90d4497630532180a32b81c2f2209d84-manifest.xcbuild
8.4 MB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
client:
name: basic
version: 0
file-system: default
targets:
"": ["<all>"]
nodes:
"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build": {"is-mutated":true}
commands:
"<all>": {"tool":"phony","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking/AFNetworking.framework/AFNetworking","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking/AFNetworking.framework/Headers","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/CNLiveBaseKit.framework/CNLiveBaseKit","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/CNLiveBaseKit.framework/Headers","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive/CNLiveBeeHive.framework/CNLiveBeeHive","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive/CNLiveBeeHive.framework/Headers","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveCommonClass/CNLiveCommonClass.framework/CNLiveCommonClass","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveCommonClass/CNLiveCommonClass.framework/Headers","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveEnvironment/CNLiveEnvironment.framework/CNLiveEnvironment","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveEnvironment/CNLiveEnvironment.framework/Headers","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/CNLiveIntegralModule.framework/CNLiveIntegralModule","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/CNLiveIntegralModule.framework/Headers","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit/CNLiveRequestBastKit.framework/CNLiveRequestBastKit","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit/CNLiveRequestBastKit.framework/Headers","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveTripartiteManagement/CNLiveTripartiteManagement.framework/CNLiveTripartiteManagement","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveTripartiteManagement/CNLiveTripartiteManagement.framework/Headers","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserAgreementManager/CNLiveUserAgreementManager.framework/CNLiveUserAgreementManager","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserAgreementManager/CNLiveUserAgreementManager.framework/Headers","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserManagement/CNLiveUserManagement.framework/CNLiveUserManagement","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserManagement/CNLiveUserManagement.framework/Headers","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension/MJExtension.framework/Headers","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension/MJExtension.framework/MJExtension","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/MJRefresh.framework/Headers","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/MJRefresh.framework/MJRefresh","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry/Masonry.framework/Headers","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry/Masonry.framework/Masonry","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Pods_CNLiveIntegralModule_Example.framework/Headers","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Pods_CNLiveIntegralModule_Example.framework/Pods_CNLiveIntegralModule_Example","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Pods_CNLiveIntegralModule_Tests.framework/Headers","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Pods_CNLiveIntegralModule_Tests.framework/Pods_CNLiveIntegralModule_Tests","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/QMUIKit","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/PrivateHeaders","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/SDWebImage","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/YYKit","<target-CNLiveServices-285b96a559574e49fe0e1a40c03a5a8e91d5e9d88631ee0f0e480b2efaa1542a--immediate>","<target-Pods-CNLiveIntegralModule_Tests-285b96a559574e49fe0e1a40c03a5a8e0dc92816745535329b7fd5143160da4d--end>","<target-Pods-CNLiveIntegralModule_Tests-285b96a559574e49fe0e1a40c03a5a8e0dc92816745535329b7fd5143160da4d--modules-ready>"],"outputs":["<all>"]}
"<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1-Debug-iphoneos-stale-file-removal>": {"tool":"stale-file-removal","expectedOutputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/arm64/AFAutoPurgingImageCache.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/arm64/AFHTTPSessionManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/arm64/AFImageDownloader.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/arm64/AFNetworkActivityIndicatorManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/arm64/AFNetworkReachabilityManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/arm64/AFNetworking-dummy.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/arm64/AFNetworking_vers.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/arm64/AFSecurityPolicy.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/arm64/AFURLRequestSerialization.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/arm64/AFURLResponseSerialization.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/arm64/AFURLSessionManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/arm64/UIActivityIndicatorView+AFNetworking.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/arm64/UIButton+AFNetworking.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/arm64/UIImageView+AFNetworking.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/arm64/UIProgressView+AFNetworking.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/arm64/UIRefreshControl+AFNetworking.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/arm64/UIWebView+AFNetworking.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/armv7/AFAutoPurgingImageCache.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/armv7/AFHTTPSessionManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/armv7/AFImageDownloader.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/armv7/AFNetworkActivityIndicatorManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/armv7/AFNetworkReachabilityManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/armv7/AFNetworking-dummy.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/armv7/AFNetworking_vers.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/armv7/AFSecurityPolicy.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/armv7/AFURLRequestSerialization.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/armv7/AFURLResponseSerialization.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/armv7/AFURLSessionManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/armv7/UIActivityIndicatorView+AFNetworking.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/armv7/UIButton+AFNetworking.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/armv7/UIImageView+AFNetworking.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/armv7/UIProgressView+AFNetworking.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/armv7/UIRefreshControl+AFNetworking.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/armv7/UIWebView+AFNetworking.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking/AFNetworking.framework/Headers/AFCompatibilityMacros.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking/AFNetworking.framework/Headers/AFHTTPSessionManager.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking/AFNetworking.framework/Headers/AFNetworkReachabilityManager.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking/AFNetworking.framework/Headers/AFNetworking.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking/AFNetworking.framework/Headers/AFSecurityPolicy.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking/AFNetworking.framework/Headers/AFURLRequestSerialization.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking/AFNetworking.framework/Headers/AFURLResponseSerialization.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking/AFNetworking.framework/Headers/AFURLSessionManager.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking/AFNetworking.framework/Headers/AFAutoPurgingImageCache.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking/AFNetworking.framework/Headers/AFImageDownloader.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking/AFNetworking.framework/Headers/AFNetworkActivityIndicatorManager.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking/AFNetworking.framework/Headers/UIActivityIndicatorView+AFNetworking.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking/AFNetworking.framework/Headers/UIButton+AFNetworking.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking/AFNetworking.framework/Headers/UIImage+AFNetworking.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking/AFNetworking.framework/Headers/UIImageView+AFNetworking.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking/AFNetworking.framework/Headers/UIKit+AFNetworking.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking/AFNetworking.framework/Headers/UIProgressView+AFNetworking.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking/AFNetworking.framework/Headers/UIRefreshControl+AFNetworking.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking/AFNetworking.framework/Headers/UIWebView+AFNetworking.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking/AFNetworking.framework/Headers/AFNetworking-umbrella.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking/AFNetworking.framework/AFNetworking","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking/AFNetworking.framework/Modules/module.modulemap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/arm64/Binary/AFNetworking","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/armv7/Binary/AFNetworking","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking/AFNetworking.framework","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking/AFNetworking.framework/Headers","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking/AFNetworking.framework/Info.plist","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/AFNetworking-all-non-framework-target-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/AFNetworking-all-target-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/AFNetworking-generated-files.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/AFNetworking-own-target-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/AFNetworking-project-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/AFNetworking.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/DerivedSources/AFNetworking_vers.c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/arm64/AFNetworking.LinkFileList","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/armv7/AFNetworking.LinkFileList","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/all-product-headers.yaml","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/module.modulemap"],"roots":["/tmp/Pods.dst","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build"],"outputs":["<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1-Debug-iphoneos-stale-file-removal>"]}
"<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184-Debug-iphoneos-stale-file-removal>": {"tool":"stale-file-removal","expectedOutputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/BaseModel.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/CNFontAndRatioTool.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/CNLiveBaseKit-dummy.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/CNLiveBaseKit_vers.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/GTMBase64.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/IOSDeviceConfig.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/JSONKit.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/NSMutableDictionary+Json.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/NSObject+Json.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/NSString+AES.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/NSString+CNLiveExtension.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/PathUtility.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/UIButton+CNCreateButton.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/UIColor+MLPFlatColors.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/UIFont+CNLiveExtension.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/UIFont+TLChat.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/UIImage+CNLiveBaseExtension.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/UIView+CNAlertView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/UIView+Extension.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/BaseModel.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/CNFontAndRatioTool.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/CNLiveBaseKit-dummy.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/CNLiveBaseKit_vers.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/GTMBase64.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/IOSDeviceConfig.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/JSONKit.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/NSMutableDictionary+Json.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/NSObject+Json.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/NSString+AES.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/NSString+CNLiveExtension.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/PathUtility.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/UIButton+CNCreateButton.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/UIColor+MLPFlatColors.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/UIFont+CNLiveExtension.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/UIFont+TLChat.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/UIImage+CNLiveBaseExtension.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/UIView+CNAlertView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/UIView+Extension.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/CNLiveBaseKit.framework/Headers/BaseModel.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/CNLiveBaseKit.framework/Headers/IOSDeviceConfig.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/CNLiveBaseKit.framework/Headers/IOSDeviceMacro.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/CNLiveBaseKit.framework/Headers/CNLiveDefinesHeader.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/CNLiveBaseKit.framework/Headers/NSString+AES.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/CNLiveBaseKit.framework/Headers/NSString+CNLiveExtension.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/CNLiveBaseKit.framework/Headers/UIButton+CNCreateButton.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/CNLiveBaseKit.framework/Headers/UIFont+TLChat.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/CNLiveBaseKit.framework/Headers/UIImage+CNLiveBaseExtension.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/CNLiveBaseKit.framework/Headers/UIView+CNAlertView.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/CNLiveBaseKit.framework/Headers/UIView+Extension.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/CNLiveBaseKit.framework/Headers/ColorHeaders.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/CNLiveBaseKit.framework/Headers/ColorMacro.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/CNLiveBaseKit.framework/Headers/UIColor+MLPFlatColors.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/CNLiveBaseKit.framework/Headers/GTMBase64.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/CNLiveBaseKit.framework/Headers/GTMDefines.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/CNLiveBaseKit.framework/Headers/PathHeaders.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/CNLiveBaseKit.framework/Headers/PathUtility.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/CNLiveBaseKit.framework/Headers/CNFontAndRatioTool.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/CNLiveBaseKit.framework/Headers/UIFont+CNLiveExtension.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/CNLiveBaseKit.framework/Headers/CNLiveBaseKit.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/CNLiveBaseKit.framework/Headers/JSONKit.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/CNLiveBaseKit.framework/Headers/NSMutableDictionary+Json.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/CNLiveBaseKit.framework/Headers/NSObject+Json.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/CNLiveBaseKit.framework/Headers/CNLiveBaseKit-umbrella.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/CNLiveBaseKit.framework/CNLiveBaseKit","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/CNLiveBaseKit.framework/Modules/module.modulemap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/Binary/CNLiveBaseKit","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/Binary/CNLiveBaseKit","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/CNLiveBaseKit.framework","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/CNLiveBaseKit.framework/Headers","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/CNLiveBaseKit.framework/Info.plist","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/CNLiveBaseKit-all-non-framework-target-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/CNLiveBaseKit-all-target-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/CNLiveBaseKit-generated-files.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/CNLiveBaseKit-own-target-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/CNLiveBaseKit-project-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/CNLiveBaseKit.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/DerivedSources/CNLiveBaseKit_vers.c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/CNLiveBaseKit.LinkFileList","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/CNLiveBaseKit.LinkFileList","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/all-product-headers.yaml","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/module.modulemap"],"roots":["/tmp/Pods.dst","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build"],"outputs":["<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184-Debug-iphoneos-stale-file-removal>"]}
"<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f-Debug-iphoneos-stale-file-removal>": {"tool":"stale-file-removal","expectedOutputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/arm64/BHAnnotation.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/arm64/BHAppDelegate.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/arm64/BHConfig.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/arm64/BHContext.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/arm64/BHModuleManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/arm64/BHRouter.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/arm64/BHServiceManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/arm64/BHTimeProfiler.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/arm64/BHWatchDog.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/arm64/BeeHive.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/arm64/CNLiveBeeHive-dummy.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/arm64/CNLiveBeeHive_vers.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/armv7/BHAnnotation.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/armv7/BHAppDelegate.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/armv7/BHConfig.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/armv7/BHContext.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/armv7/BHModuleManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/armv7/BHRouter.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/armv7/BHServiceManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/armv7/BHTimeProfiler.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/armv7/BHWatchDog.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/armv7/BeeHive.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/armv7/CNLiveBeeHive-dummy.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/armv7/CNLiveBeeHive_vers.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive/CNLiveBeeHive.framework/Headers/BHAnnotation.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive/CNLiveBeeHive.framework/Headers/BHAppDelegate.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive/CNLiveBeeHive.framework/Headers/BHCommon.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive/CNLiveBeeHive.framework/Headers/BHConfig.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive/CNLiveBeeHive.framework/Headers/BHContext.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive/CNLiveBeeHive.framework/Headers/BHDefines.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive/CNLiveBeeHive.framework/Headers/BHModuleManager.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive/CNLiveBeeHive.framework/Headers/BHModuleProtocol.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive/CNLiveBeeHive.framework/Headers/BHRouter.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive/CNLiveBeeHive.framework/Headers/BHServiceManager.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive/CNLiveBeeHive.framework/Headers/BHServiceProtocol.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive/CNLiveBeeHive.framework/Headers/BHTimeProfiler.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive/CNLiveBeeHive.framework/Headers/BHWatchDog.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive/CNLiveBeeHive.framework/Headers/BeeHive.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive/CNLiveBeeHive.framework/Headers/CNLiveBeeHive.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive/CNLiveBeeHive.framework/Headers/CNLiveBeeHive-umbrella.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive/CNLiveBeeHive.framework/CNLiveBeeHive.bundle","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive/CNLiveBeeHive.framework/CNLiveBeeHive","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive/CNLiveBeeHive.framework/Modules/module.modulemap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/arm64/Binary/CNLiveBeeHive","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/armv7/Binary/CNLiveBeeHive","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive/CNLiveBeeHive.framework","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive/CNLiveBeeHive.framework/Headers","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive/CNLiveBeeHive.framework/Info.plist","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/CNLiveBeeHive-all-non-framework-target-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/CNLiveBeeHive-all-target-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/CNLiveBeeHive-generated-files.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/CNLiveBeeHive-own-target-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/CNLiveBeeHive-project-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/CNLiveBeeHive.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/DerivedSources/CNLiveBeeHive_vers.c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/arm64/CNLiveBeeHive.LinkFileList","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/armv7/CNLiveBeeHive.LinkFileList","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/all-product-headers.yaml","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/module.modulemap"],"roots":["/tmp/Pods.dst","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build"],"outputs":["<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f-Debug-iphoneos-stale-file-removal>"]}
"<target-CNLiveBeeHive-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8eb19d8bc2256b7e726f7d728ddfaed39d-Debug-iphoneos-stale-file-removal>": {"tool":"stale-file-removal","expectedOutputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive/CNLiveBeeHive.bundle/BeeHive.bundle","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive/CNLiveBeeHive.bundle","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive/CNLiveBeeHive.bundle/Info.plist","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive-CNLiveBeeHive.build/CNLiveBeeHive-all-non-framework-target-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive-CNLiveBeeHive.build/CNLiveBeeHive-all-target-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive-CNLiveBeeHive.build/CNLiveBeeHive-generated-files.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive-CNLiveBeeHive.build/CNLiveBeeHive-own-target-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive-CNLiveBeeHive.build/CNLiveBeeHive-project-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive-CNLiveBeeHive.build/CNLiveBeeHive.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive-CNLiveBeeHive.build/all-product-headers.yaml"],"roots":["/tmp/Pods.dst","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build"],"outputs":["<target-CNLiveBeeHive-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8eb19d8bc2256b7e726f7d728ddfaed39d-Debug-iphoneos-stale-file-removal>"]}
"<target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9-Debug-iphoneos-stale-file-removal>": {"tool":"stale-file-removal","expectedOutputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/Objects-normal/arm64/CNCommonListViewController.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/Objects-normal/arm64/CNCommonTableViewController.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/Objects-normal/arm64/CNCommonView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/Objects-normal/arm64/CNCommonViewController.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/Objects-normal/arm64/CNLiveCommonClass-dummy.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/Objects-normal/arm64/CNLiveCommonClass_vers.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/Objects-normal/arm64/CNThemeManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/Objects-normal/armv7/CNCommonListViewController.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/Objects-normal/armv7/CNCommonTableViewController.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/Objects-normal/armv7/CNCommonView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/Objects-normal/armv7/CNCommonViewController.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/Objects-normal/armv7/CNLiveCommonClass-dummy.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/Objects-normal/armv7/CNLiveCommonClass_vers.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/Objects-normal/armv7/CNThemeManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveCommonClass/CNLiveCommonClass.framework/Headers/CNCommonListViewController.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveCommonClass/CNLiveCommonClass.framework/Headers/CNCommonTableViewController.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveCommonClass/CNLiveCommonClass.framework/Headers/CNCommonView.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveCommonClass/CNLiveCommonClass.framework/Headers/CNCommonViewController.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveCommonClass/CNLiveCommonClass.framework/Headers/CNLiveCommonClass.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveCommonClass/CNLiveCommonClass.framework/Headers/CNThemeManager.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveCommonClass/CNLiveCommonClass.framework/Headers/CNThemeProtocol.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveCommonClass/CNLiveCommonClass.framework/Headers/CNLiveCommonClass-umbrella.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveCommonClass/CNLiveCommonClass.framework/CNLiveCommonClass","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveCommonClass/CNLiveCommonClass.framework/Modules/module.modulemap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/Objects-normal/arm64/Binary/CNLiveCommonClass","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/Objects-normal/armv7/Binary/CNLiveCommonClass","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveCommonClass/CNLiveCommonClass.framework","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveCommonClass/CNLiveCommonClass.framework/Headers","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveCommonClass/CNLiveCommonClass.framework/Info.plist","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/CNLiveCommonClass-all-non-framework-target-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/CNLiveCommonClass-all-target-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/CNLiveCommonClass-generated-files.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/CNLiveCommonClass-own-target-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/CNLiveCommonClass-project-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/CNLiveCommonClass.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/DerivedSources/CNLiveCommonClass_vers.c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/Objects-normal/arm64/CNLiveCommonClass.LinkFileList","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/Objects-normal/armv7/CNLiveCommonClass.LinkFileList","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/all-product-headers.yaml","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/module.modulemap"],"roots":["/tmp/Pods.dst","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build"],"outputs":["<target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9-Debug-iphoneos-stale-file-removal>"]}
"<target-CNLiveEnvironment-285b96a559574e49fe0e1a40c03a5a8e61e9c7c4a29ad91844f8d551bbfe0deb-Debug-iphoneos-stale-file-removal>": {"tool":"stale-file-removal","expectedOutputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveEnvironment.build/Objects-normal/arm64/CNLiveEnvironment-dummy.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveEnvironment.build/Objects-normal/arm64/CNLiveEnvironmentManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveEnvironment.build/Objects-normal/arm64/CNLiveEnvironment_vers.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveEnvironment.build/Objects-normal/armv7/CNLiveEnvironment-dummy.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveEnvironment.build/Objects-normal/armv7/CNLiveEnvironmentManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveEnvironment.build/Objects-normal/armv7/CNLiveEnvironment_vers.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveEnvironment/CNLiveEnvironment.framework/Headers/CNLiveEnvironment.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveEnvironment/CNLiveEnvironment.framework/Headers/CNLiveEnvironmentManager.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveEnvironment/CNLiveEnvironment.framework/Headers/CNLiveInterface.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveEnvironment/CNLiveEnvironment.framework/Headers/CNLiveEnvironment-umbrella.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveEnvironment/CNLiveEnvironment.framework/CNLiveEnvironment","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveEnvironment/CNLiveEnvironment.framework/Modules/module.modulemap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveEnvironment.build/Objects-normal/arm64/Binary/CNLiveEnvironment","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveEnvironment.build/Objects-normal/armv7/Binary/CNLiveEnvironment","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveEnvironment/CNLiveEnvironment.framework","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveEnvironment/CNLiveEnvironment.framework/Headers","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveEnvironment/CNLiveEnvironment.framework/Info.plist","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveEnvironment.build/CNLiveEnvironment-all-non-framework-target-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveEnvironment.build/CNLiveEnvironment-all-target-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveEnvironment.build/CNLiveEnvironment-generated-files.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveEnvironment.build/CNLiveEnvironment-own-target-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveEnvironment.build/CNLiveEnvironment-project-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveEnvironment.build/CNLiveEnvironment.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveEnvironment.build/DerivedSources/CNLiveEnvironment_vers.c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveEnvironment.build/Objects-normal/arm64/CNLiveEnvironment.LinkFileList","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveEnvironment.build/Objects-normal/armv7/CNLiveEnvironment.LinkFileList","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveEnvironment.build/all-product-headers.yaml","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveEnvironment.build/module.modulemap"],"roots":["/tmp/Pods.dst","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build"],"outputs":["<target-CNLiveEnvironment-285b96a559574e49fe0e1a40c03a5a8e61e9c7c4a29ad91844f8d551bbfe0deb-Debug-iphoneos-stale-file-removal>"]}
"<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285-Debug-iphoneos-stale-file-removal>": {"tool":"stale-file-removal","expectedOutputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CAEmitterLayerView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveAddScoreManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveAddScoreView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveGoldWhereaboutsView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveIntegralDetailsController.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveIntegralDetailsTableViewCell.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveIntegralModule-dummy.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveIntegralModule.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveIntegralModule_vers.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveIntegralNavigationBar.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveIntegralService.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveRewardRulesView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveScoreModel.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveSignInButtonSelectView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveSignInButtonView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveSignInView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveTaskListController.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveTaskListHeaderView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveTaskListModel.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveTaskListSectionHeaderView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveTaskListTableViewCell.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CAEmitterLayerView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveAddScoreManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveAddScoreView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveGoldWhereaboutsView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveIntegralDetailsController.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveIntegralDetailsTableViewCell.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveIntegralModule-dummy.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveIntegralModule.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveIntegralModule_vers.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveIntegralNavigationBar.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveIntegralService.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveRewardRulesView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveScoreModel.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveSignInButtonSelectView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveSignInButtonView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveSignInView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveTaskListController.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveTaskListHeaderView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveTaskListModel.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveTaskListSectionHeaderView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveTaskListTableViewCell.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/CNLiveIntegralModule.framework/Headers/CNLiveIntegralDetailsController.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/CNLiveIntegralModule.framework/Headers/CNLiveTaskListController.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/CNLiveIntegralModule.framework/Headers/CNLiveScoreModel.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/CNLiveIntegralModule.framework/Headers/CNLiveTaskListModel.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/CNLiveIntegralModule.framework/Headers/CNLiveIntegralModule.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/CNLiveIntegralModule.framework/Headers/CNLiveIntegralService.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/CNLiveIntegralModule.framework/Headers/CNLiveAddScoreManager.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/CNLiveIntegralModule.framework/Headers/CNLiveAddScoreView.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/CNLiveIntegralModule.framework/Headers/CNLiveGoldWhereaboutsView.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/CNLiveIntegralModule.framework/Headers/CNLiveRewardRulesView.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/CNLiveIntegralModule.framework/Headers/CNLiveSignInView.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/CNLiveIntegralModule.framework/Headers/CAEmitterLayerView.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/CNLiveIntegralModule.framework/Headers/CNLiveIntegralDetailsTableViewCell.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/CNLiveIntegralModule.framework/Headers/CNLiveIntegralNavigationBar.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/CNLiveIntegralModule.framework/Headers/CNLiveSignInButtonSelectView.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/CNLiveIntegralModule.framework/Headers/CNLiveSignInButtonView.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/CNLiveIntegralModule.framework/Headers/CNLiveTaskListHeaderView.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/CNLiveIntegralModule.framework/Headers/CNLiveTaskListSectionHeaderView.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/CNLiveIntegralModule.framework/Headers/CNLiveTaskListTableViewCell.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/CNLiveIntegralModule.framework/Headers/CNLiveIntegralModule-umbrella.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/CNLiveIntegralModule.framework/CNLiveIntegralModule.bundle","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/CNLiveIntegralModule.framework/CNLiveIntegralModule","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/CNLiveIntegralModule.framework/Modules/module.modulemap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/Binary/CNLiveIntegralModule","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/Binary/CNLiveIntegralModule","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/CNLiveIntegralModule.framework","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/CNLiveIntegralModule.framework/Headers","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/CNLiveIntegralModule.framework/Info.plist","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/CNLiveIntegralModule-all-non-framework-target-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/CNLiveIntegralModule-all-target-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/CNLiveIntegralModule-generated-files.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/CNLiveIntegralModule-own-target-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/CNLiveIntegralModule-project-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/CNLiveIntegralModule.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/DerivedSources/CNLiveIntegralModule_vers.c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveIntegralModule.LinkFileList","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveIntegralModule.LinkFileList","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/all-product-headers.yaml","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/module.modulemap"],"roots":["/tmp/Pods.dst","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build"],"outputs":["<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285-Debug-iphoneos-stale-file-removal>"]}
"<target-CNLiveIntegralModule-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8efe4e531668133d9170ede618cb4425d1-Debug-iphoneos-stale-file-removal>": {"tool":"stale-file-removal","expectedOutputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule-CNLiveIntegralModule.build/assetcatalog_generated_info.plist","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/CNLiveIntegralModule.bundle/Assets.car","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/CNLiveIntegralModule.bundle/gold_whereabouts.mp3","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/CNLiveIntegralModule.bundle","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/CNLiveIntegralModule.bundle/Info.plist","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule-CNLiveIntegralModule.build/CNLiveIntegralModule-all-non-framework-target-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule-CNLiveIntegralModule.build/CNLiveIntegralModule-all-target-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule-CNLiveIntegralModule.build/CNLiveIntegralModule-generated-files.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule-CNLiveIntegralModule.build/CNLiveIntegralModule-own-target-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule-CNLiveIntegralModule.build/CNLiveIntegralModule-project-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule-CNLiveIntegralModule.build/CNLiveIntegralModule.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule-CNLiveIntegralModule.build/all-product-headers.yaml"],"roots":["/tmp/Pods.dst","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build"],"outputs":["<target-CNLiveIntegralModule-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8efe4e531668133d9170ede618cb4425d1-Debug-iphoneos-stale-file-removal>"]}
"<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af-Debug-iphoneos-stale-file-removal>": {"tool":"stale-file-removal","expectedOutputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/arm64/CNLiveNetworkAgent.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/arm64/CNLiveNetworkBaseRequest.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/arm64/CNLiveNetworkConfig.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/arm64/CNLiveNetworkLogManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/arm64/CNLiveNetworkLogWebViewController.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/arm64/CNLiveNetworkPrivate.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/arm64/CNLiveNetworkRequest.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/arm64/CNLiveNetworkSessionManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/arm64/CNLiveNetworking.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/arm64/CNLiveRequestBastKit-dummy.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/arm64/CNLiveRequestBastKit_vers.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/armv7/CNLiveNetworkAgent.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/armv7/CNLiveNetworkBaseRequest.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/armv7/CNLiveNetworkConfig.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/armv7/CNLiveNetworkLogManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/armv7/CNLiveNetworkLogWebViewController.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/armv7/CNLiveNetworkPrivate.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/armv7/CNLiveNetworkRequest.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/armv7/CNLiveNetworkSessionManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/armv7/CNLiveNetworking.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/armv7/CNLiveRequestBastKit-dummy.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/armv7/CNLiveRequestBastKit_vers.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit/CNLiveRequestBastKit.framework/Headers/CNLiveNetworkAgent.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit/CNLiveRequestBastKit.framework/Headers/CNLiveNetworkBaseRequest.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit/CNLiveRequestBastKit.framework/Headers/CNLiveNetworkConfig.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit/CNLiveRequestBastKit.framework/Headers/CNLiveNetworkEnum.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit/CNLiveRequestBastKit.framework/Headers/CNLiveNetworkLogManager.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit/CNLiveRequestBastKit.framework/Headers/CNLiveNetworkLogWebViewController.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit/CNLiveRequestBastKit.framework/Headers/CNLiveNetworkPrivate.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit/CNLiveRequestBastKit.framework/Headers/CNLiveNetworkRequest.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit/CNLiveRequestBastKit.framework/Headers/CNLiveNetworkSessionManager.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit/CNLiveRequestBastKit.framework/Headers/CNLiveNetworking.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit/CNLiveRequestBastKit.framework/Headers/CNLiveRequestBastKit-umbrella.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit/CNLiveRequestBastKit.framework/CNLiveRequestBastKit","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit/CNLiveRequestBastKit.framework/Modules/module.modulemap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/arm64/Binary/CNLiveRequestBastKit","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/armv7/Binary/CNLiveRequestBastKit","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit/CNLiveRequestBastKit.framework","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit/CNLiveRequestBastKit.framework/Headers","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit/CNLiveRequestBastKit.framework/Info.plist","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/CNLiveRequestBastKit-all-non-framework-target-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/CNLiveRequestBastKit-all-target-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/CNLiveRequestBastKit-generated-files.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/CNLiveRequestBastKit-own-target-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/CNLiveRequestBastKit-project-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/CNLiveRequestBastKit.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/DerivedSources/CNLiveRequestBastKit_vers.c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/arm64/CNLiveRequestBastKit.LinkFileList","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/armv7/CNLiveRequestBastKit.LinkFileList","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/all-product-headers.yaml","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/module.modulemap"],"roots":["/tmp/Pods.dst","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build"],"outputs":["<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af-Debug-iphoneos-stale-file-removal>"]}
"<target-CNLiveServices-285b96a559574e49fe0e1a40c03a5a8e91d5e9d88631ee0f0e480b2efaa1542a-Debug-iphoneos-stale-file-removal>": {"tool":"stale-file-removal","expectedOutputs":[],"roots":["/tmp/Pods.dst","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build"],"outputs":["<target-CNLiveServices-285b96a559574e49fe0e1a40c03a5a8e91d5e9d88631ee0f0e480b2efaa1542a-Debug-iphoneos-stale-file-removal>"]}
"<target-CNLiveTripartiteManagement-285b96a559574e49fe0e1a40c03a5a8ec69cdcecdf4ee3a594726fb547f0e760-Debug-iphoneos-stale-file-removal>": {"tool":"stale-file-removal","expectedOutputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveTripartiteManagement.build/Objects-normal/arm64/CNLiveTripartiteManagement-dummy.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveTripartiteManagement.build/Objects-normal/arm64/CNLiveTripartiteManagement_vers.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveTripartiteManagement.build/Objects-normal/armv7/CNLiveTripartiteManagement-dummy.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveTripartiteManagement.build/Objects-normal/armv7/CNLiveTripartiteManagement_vers.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveTripartiteManagement/CNLiveTripartiteManagement.framework/Headers/CNLiveTripartiteManagement-umbrella.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveTripartiteManagement/CNLiveTripartiteManagement.framework/CNLiveTripartiteManagement","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveTripartiteManagement/CNLiveTripartiteManagement.framework/Modules/module.modulemap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveTripartiteManagement.build/Objects-normal/arm64/Binary/CNLiveTripartiteManagement","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveTripartiteManagement.build/Objects-normal/armv7/Binary/CNLiveTripartiteManagement","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveTripartiteManagement/CNLiveTripartiteManagement.framework","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveTripartiteManagement/CNLiveTripartiteManagement.framework/Headers","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveTripartiteManagement/CNLiveTripartiteManagement.framework/Info.plist","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveTripartiteManagement.build/CNLiveTripartiteManagement-all-non-framework-target-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveTripartiteManagement.build/CNLiveTripartiteManagement-all-target-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveTripartiteManagement.build/CNLiveTripartiteManagement-generated-files.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveTripartiteManagement.build/CNLiveTripartiteManagement-own-target-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveTripartiteManagement.build/CNLiveTripartiteManagement-project-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveTripartiteManagement.build/CNLiveTripartiteManagement.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveTripartiteManagement.build/DerivedSources/CNLiveTripartiteManagement_vers.c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveTripartiteManagement.build/Objects-normal/arm64/CNLiveTripartiteManagement.LinkFileList","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveTripartiteManagement.build/Objects-normal/armv7/CNLiveTripartiteManagement.LinkFileList","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveTripartiteManagement.build/all-product-headers.yaml","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveTripartiteManagement.build/module.modulemap"],"roots":["/tmp/Pods.dst","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build"],"outputs":["<target-CNLiveTripartiteManagement-285b96a559574e49fe0e1a40c03a5a8ec69cdcecdf4ee3a594726fb547f0e760-Debug-iphoneos-stale-file-removal>"]}
"<target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4-Debug-iphoneos-stale-file-removal>": {"tool":"stale-file-removal","expectedOutputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/Objects-normal/arm64/CNLiveUserAgreementManager-dummy.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/Objects-normal/arm64/CNLiveUserAgreementManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/Objects-normal/arm64/CNLiveUserAgreementManager_vers.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/Objects-normal/arm64/CNLiveUserAgreementWebController.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/Objects-normal/armv7/CNLiveUserAgreementManager-dummy.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/Objects-normal/armv7/CNLiveUserAgreementManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/Objects-normal/armv7/CNLiveUserAgreementManager_vers.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/Objects-normal/armv7/CNLiveUserAgreementWebController.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserAgreementManager/CNLiveUserAgreementManager.framework/Headers/CNLiveUserAgreementManager.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserAgreementManager/CNLiveUserAgreementManager.framework/Headers/CNLiveUserAgreementWebController.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserAgreementManager/CNLiveUserAgreementManager.framework/Headers/CNLiveUserAgreementManager-umbrella.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserAgreementManager/CNLiveUserAgreementManager.framework/CNLiveUserAgreementManager.bundle","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserAgreementManager/CNLiveUserAgreementManager.framework/CNLiveUserAgreementManager","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserAgreementManager/CNLiveUserAgreementManager.framework/Modules/module.modulemap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/Objects-normal/arm64/Binary/CNLiveUserAgreementManager","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/Objects-normal/armv7/Binary/CNLiveUserAgreementManager","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserAgreementManager/CNLiveUserAgreementManager.framework","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserAgreementManager/CNLiveUserAgreementManager.framework/Headers","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserAgreementManager/CNLiveUserAgreementManager.framework/Info.plist","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/CNLiveUserAgreementManager-all-non-framework-target-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/CNLiveUserAgreementManager-all-target-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/CNLiveUserAgreementManager-generated-files.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/CNLiveUserAgreementManager-own-target-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/CNLiveUserAgreementManager-project-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/CNLiveUserAgreementManager.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/DerivedSources/CNLiveUserAgreementManager_vers.c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/Objects-normal/arm64/CNLiveUserAgreementManager.LinkFileList","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/Objects-normal/armv7/CNLiveUserAgreementManager.LinkFileList","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/all-product-headers.yaml","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/module.modulemap"],"roots":["/tmp/Pods.dst","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build"],"outputs":["<target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4-Debug-iphoneos-stale-file-removal>"]}
"<target-CNLiveUserAgreementManager-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ef20c2af33041468e717003000e83c9d2-Debug-iphoneos-stale-file-removal>": {"tool":"stale-file-removal","expectedOutputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager-CNLiveUserAgreementManager.build/assetcatalog_generated_info.plist","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserAgreementManager/CNLiveUserAgreementManager.bundle/Assets.car","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserAgreementManager/CNLiveUserAgreementManager.bundle","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserAgreementManager/CNLiveUserAgreementManager.bundle/Info.plist","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager-CNLiveUserAgreementManager.build/CNLiveUserAgreementManager-all-non-framework-target-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager-CNLiveUserAgreementManager.build/CNLiveUserAgreementManager-all-target-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager-CNLiveUserAgreementManager.build/CNLiveUserAgreementManager-generated-files.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager-CNLiveUserAgreementManager.build/CNLiveUserAgreementManager-own-target-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager-CNLiveUserAgreementManager.build/CNLiveUserAgreementManager-project-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager-CNLiveUserAgreementManager.build/CNLiveUserAgreementManager.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager-CNLiveUserAgreementManager.build/all-product-headers.yaml"],"roots":["/tmp/Pods.dst","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build"],"outputs":["<target-CNLiveUserAgreementManager-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ef20c2af33041468e717003000e83c9d2-Debug-iphoneos-stale-file-removal>"]}
"<target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea-Debug-iphoneos-stale-file-removal>": {"tool":"stale-file-removal","expectedOutputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/Objects-normal/arm64/CNLiveUserManagement-dummy.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/Objects-normal/arm64/CNLiveUserManagement_vers.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/Objects-normal/arm64/CNUserInfoManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/Objects-normal/arm64/CNUserInfoModel.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/Objects-normal/armv7/CNLiveUserManagement-dummy.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/Objects-normal/armv7/CNLiveUserManagement_vers.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/Objects-normal/armv7/CNUserInfoManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/Objects-normal/armv7/CNUserInfoModel.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserManagement/CNLiveUserManagement.framework/Headers/CNUserInfoManager.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserManagement/CNLiveUserManagement.framework/Headers/CNUserInfoModel.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserManagement/CNLiveUserManagement.framework/Headers/CNLiveUserManagement-umbrella.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserManagement/CNLiveUserManagement.framework/CNLiveUserManagement","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserManagement/CNLiveUserManagement.framework/Modules/module.modulemap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/Objects-normal/arm64/Binary/CNLiveUserManagement","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/Objects-normal/armv7/Binary/CNLiveUserManagement","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserManagement/CNLiveUserManagement.framework","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserManagement/CNLiveUserManagement.framework/Headers","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserManagement/CNLiveUserManagement.framework/Info.plist","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/CNLiveUserManagement-all-non-framework-target-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/CNLiveUserManagement-all-target-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/CNLiveUserManagement-generated-files.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/CNLiveUserManagement-own-target-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/CNLiveUserManagement-project-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/CNLiveUserManagement.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/DerivedSources/CNLiveUserManagement_vers.c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/Objects-normal/arm64/CNLiveUserManagement.LinkFileList","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/Objects-normal/armv7/CNLiveUserManagement.LinkFileList","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/all-product-headers.yaml","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/module.modulemap"],"roots":["/tmp/Pods.dst","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build"],"outputs":["<target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea-Debug-iphoneos-stale-file-removal>"]}
"<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643-Debug-iphoneos-stale-file-removal>": {"tool":"stale-file-removal","expectedOutputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/arm64/MJExtension-dummy.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/arm64/MJExtensionConst.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/arm64/MJExtension_vers.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/arm64/MJFoundation.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/arm64/MJProperty.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/arm64/MJPropertyKey.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/arm64/MJPropertyType.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/arm64/NSObject+MJClass.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/arm64/NSObject+MJCoding.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/arm64/NSObject+MJKeyValue.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/arm64/NSObject+MJProperty.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/arm64/NSString+MJExtension.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/armv7/MJExtension-dummy.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/armv7/MJExtensionConst.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/armv7/MJExtension_vers.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/armv7/MJFoundation.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/armv7/MJProperty.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/armv7/MJPropertyKey.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/armv7/MJPropertyType.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/armv7/NSObject+MJClass.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/armv7/NSObject+MJCoding.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/armv7/NSObject+MJKeyValue.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/armv7/NSObject+MJProperty.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/armv7/NSString+MJExtension.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension/MJExtension.framework/Headers/MJExtension.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension/MJExtension.framework/Headers/MJExtensionConst.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension/MJExtension.framework/Headers/MJFoundation.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension/MJExtension.framework/Headers/MJProperty.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension/MJExtension.framework/Headers/MJPropertyKey.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension/MJExtension.framework/Headers/MJPropertyType.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension/MJExtension.framework/Headers/NSObject+MJClass.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension/MJExtension.framework/Headers/NSObject+MJCoding.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension/MJExtension.framework/Headers/NSObject+MJKeyValue.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension/MJExtension.framework/Headers/NSObject+MJProperty.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension/MJExtension.framework/Headers/NSString+MJExtension.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension/MJExtension.framework/Headers/MJExtension-umbrella.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension/MJExtension.framework/MJExtension","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension/MJExtension.framework/Modules/module.modulemap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/arm64/Binary/MJExtension","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/armv7/Binary/MJExtension","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension/MJExtension.framework","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension/MJExtension.framework/Headers","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension/MJExtension.framework/Info.plist","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/DerivedSources/MJExtension_vers.c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/MJExtension-all-non-framework-target-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/MJExtension-all-target-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/MJExtension-generated-files.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/MJExtension-own-target-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/MJExtension-project-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/MJExtension.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/arm64/MJExtension.LinkFileList","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/armv7/MJExtension.LinkFileList","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/all-product-headers.yaml","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/module.modulemap"],"roots":["/tmp/Pods.dst","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build"],"outputs":["<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643-Debug-iphoneos-stale-file-removal>"]}
"<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e-Debug-iphoneos-stale-file-removal>": {"tool":"stale-file-removal","expectedOutputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/MJRefresh-dummy.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/MJRefreshAutoFooter.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/MJRefreshAutoGifFooter.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/MJRefreshAutoNormalFooter.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/MJRefreshAutoStateFooter.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/MJRefreshBackFooter.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/MJRefreshBackGifFooter.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/MJRefreshBackNormalFooter.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/MJRefreshBackStateFooter.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/MJRefreshComponent.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/MJRefreshConfig.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/MJRefreshConst.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/MJRefreshFooter.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/MJRefreshGifHeader.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/MJRefreshHeader.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/MJRefreshNormalHeader.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/MJRefreshStateHeader.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/MJRefresh_vers.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/NSBundle+MJRefresh.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/UIScrollView+MJExtension.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/UIScrollView+MJRefresh.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/UIView+MJExtension.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/MJRefresh-dummy.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/MJRefreshAutoFooter.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/MJRefreshAutoGifFooter.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/MJRefreshAutoNormalFooter.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/MJRefreshAutoStateFooter.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/MJRefreshBackFooter.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/MJRefreshBackGifFooter.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/MJRefreshBackNormalFooter.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/MJRefreshBackStateFooter.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/MJRefreshComponent.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/MJRefreshConfig.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/MJRefreshConst.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/MJRefreshFooter.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/MJRefreshGifHeader.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/MJRefreshHeader.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/MJRefreshNormalHeader.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/MJRefreshStateHeader.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/MJRefresh_vers.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/NSBundle+MJRefresh.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/UIScrollView+MJExtension.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/UIScrollView+MJRefresh.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/UIView+MJExtension.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/MJRefresh.framework/Headers/MJRefreshAutoFooter.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/MJRefresh.framework/Headers/MJRefreshBackFooter.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/MJRefresh.framework/Headers/MJRefreshComponent.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/MJRefresh.framework/Headers/MJRefreshFooter.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/MJRefresh.framework/Headers/MJRefreshHeader.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/MJRefresh.framework/Headers/MJRefreshAutoGifFooter.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/MJRefresh.framework/Headers/MJRefreshAutoNormalFooter.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/MJRefresh.framework/Headers/MJRefreshAutoStateFooter.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/MJRefresh.framework/Headers/MJRefreshBackGifFooter.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/MJRefresh.framework/Headers/MJRefreshBackNormalFooter.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/MJRefresh.framework/Headers/MJRefreshBackStateFooter.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/MJRefresh.framework/Headers/MJRefreshGifHeader.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/MJRefresh.framework/Headers/MJRefreshNormalHeader.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/MJRefresh.framework/Headers/MJRefreshStateHeader.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/MJRefresh.framework/Headers/MJRefresh.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/MJRefresh.framework/Headers/MJRefreshConfig.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/MJRefresh.framework/Headers/MJRefreshConst.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/MJRefresh.framework/Headers/NSBundle+MJRefresh.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/MJRefresh.framework/Headers/UIScrollView+MJExtension.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/MJRefresh.framework/Headers/UIScrollView+MJRefresh.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/MJRefresh.framework/Headers/UIView+MJExtension.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/MJRefresh.framework/Headers/MJRefresh-umbrella.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/MJRefresh.framework/MJRefresh.bundle","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/MJRefresh.framework/MJRefresh","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/MJRefresh.framework/Modules/module.modulemap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/Binary/MJRefresh","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/Binary/MJRefresh","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/MJRefresh.framework","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/MJRefresh.framework/Headers","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/MJRefresh.framework/Info.plist","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/DerivedSources/MJRefresh_vers.c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/MJRefresh-all-non-framework-target-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/MJRefresh-all-target-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/MJRefresh-generated-files.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/MJRefresh-own-target-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/MJRefresh-project-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/MJRefresh.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/MJRefresh.LinkFileList","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/MJRefresh.LinkFileList","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/all-product-headers.yaml","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/module.modulemap"],"roots":["/tmp/Pods.dst","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build"],"outputs":["<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e-Debug-iphoneos-stale-file-removal>"]}
"<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5-Debug-iphoneos-stale-file-removal>": {"tool":"stale-file-removal","expectedOutputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/arm64/MASCompositeConstraint.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/arm64/MASConstraint.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/arm64/MASConstraintMaker.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/arm64/MASLayoutConstraint.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/arm64/MASViewAttribute.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/arm64/MASViewConstraint.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/arm64/Masonry-dummy.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/arm64/Masonry_vers.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/arm64/NSArray+MASAdditions.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/arm64/NSLayoutConstraint+MASDebugAdditions.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/arm64/View+MASAdditions.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/arm64/ViewController+MASAdditions.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/armv7/MASCompositeConstraint.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/armv7/MASConstraint.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/armv7/MASConstraintMaker.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/armv7/MASLayoutConstraint.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/armv7/MASViewAttribute.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/armv7/MASViewConstraint.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/armv7/Masonry-dummy.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/armv7/Masonry_vers.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/armv7/NSArray+MASAdditions.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/armv7/NSLayoutConstraint+MASDebugAdditions.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/armv7/View+MASAdditions.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/armv7/ViewController+MASAdditions.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry/Masonry.framework/Headers/MASCompositeConstraint.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry/Masonry.framework/Headers/MASConstraint+Private.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry/Masonry.framework/Headers/MASConstraint.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry/Masonry.framework/Headers/MASConstraintMaker.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry/Masonry.framework/Headers/MASLayoutConstraint.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry/Masonry.framework/Headers/MASUtilities.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry/Masonry.framework/Headers/MASViewAttribute.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry/Masonry.framework/Headers/MASViewConstraint.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry/Masonry.framework/Headers/Masonry.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry/Masonry.framework/Headers/NSArray+MASAdditions.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry/Masonry.framework/Headers/NSArray+MASShorthandAdditions.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry/Masonry.framework/Headers/NSLayoutConstraint+MASDebugAdditions.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry/Masonry.framework/Headers/View+MASAdditions.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry/Masonry.framework/Headers/View+MASShorthandAdditions.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry/Masonry.framework/Headers/ViewController+MASAdditions.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry/Masonry.framework/Headers/Masonry-umbrella.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry/Masonry.framework/Masonry","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry/Masonry.framework/Modules/module.modulemap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/arm64/Binary/Masonry","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/armv7/Binary/Masonry","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry/Masonry.framework","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry/Masonry.framework/Headers","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry/Masonry.framework/Info.plist","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/DerivedSources/Masonry_vers.c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Masonry-all-non-framework-target-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Masonry-all-target-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Masonry-generated-files.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Masonry-own-target-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Masonry-project-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Masonry.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/arm64/Masonry.LinkFileList","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/armv7/Masonry.LinkFileList","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/all-product-headers.yaml","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/module.modulemap"],"roots":["/tmp/Pods.dst","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build"],"outputs":["<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5-Debug-iphoneos-stale-file-removal>"]}
"<target-Pods-CNLiveIntegralModule_Example-285b96a559574e49fe0e1a40c03a5a8eed0c33fce09051cbc64ad7bd7697dde1-Debug-iphoneos-stale-file-removal>": {"tool":"stale-file-removal","expectedOutputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Example.build/Objects-normal/arm64/Pods-CNLiveIntegralModule_Example-dummy.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Example.build/Objects-normal/arm64/Pods_CNLiveIntegralModule_Example_vers.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Example.build/Objects-normal/armv7/Pods-CNLiveIntegralModule_Example-dummy.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Example.build/Objects-normal/armv7/Pods_CNLiveIntegralModule_Example_vers.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Pods_CNLiveIntegralModule_Example.framework/Headers/Pods-CNLiveIntegralModule_Example-umbrella.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Pods_CNLiveIntegralModule_Example.framework/Pods_CNLiveIntegralModule_Example","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Pods_CNLiveIntegralModule_Example.framework/Modules/module.modulemap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Example.build/Objects-normal/arm64/Binary/Pods_CNLiveIntegralModule_Example","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Example.build/Objects-normal/armv7/Binary/Pods_CNLiveIntegralModule_Example","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Pods_CNLiveIntegralModule_Example.framework","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Pods_CNLiveIntegralModule_Example.framework/Headers","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Pods_CNLiveIntegralModule_Example.framework/Info.plist","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Example.build/DerivedSources/Pods_CNLiveIntegralModule_Example_vers.c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Example.build/Objects-normal/arm64/Pods_CNLiveIntegralModule_Example.LinkFileList","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Example.build/Objects-normal/armv7/Pods_CNLiveIntegralModule_Example.LinkFileList","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Example.build/Pods_CNLiveIntegralModule_Example-all-non-framework-target-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Example.build/Pods_CNLiveIntegralModule_Example-all-target-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Example.build/Pods_CNLiveIntegralModule_Example-generated-files.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Example.build/Pods_CNLiveIntegralModule_Example-own-target-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Example.build/Pods_CNLiveIntegralModule_Example-project-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Example.build/Pods_CNLiveIntegralModule_Example.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Example.build/all-product-headers.yaml","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Example.build/module.modulemap"],"roots":["/tmp/Pods.dst","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build"],"outputs":["<target-Pods-CNLiveIntegralModule_Example-285b96a559574e49fe0e1a40c03a5a8eed0c33fce09051cbc64ad7bd7697dde1-Debug-iphoneos-stale-file-removal>"]}
"<target-Pods-CNLiveIntegralModule_Tests-285b96a559574e49fe0e1a40c03a5a8e0dc92816745535329b7fd5143160da4d-Debug-iphoneos-stale-file-removal>": {"tool":"stale-file-removal","expectedOutputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Tests.build/Objects-normal/arm64/Pods-CNLiveIntegralModule_Tests-dummy.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Tests.build/Objects-normal/arm64/Pods_CNLiveIntegralModule_Tests_vers.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Tests.build/Objects-normal/armv7/Pods-CNLiveIntegralModule_Tests-dummy.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Tests.build/Objects-normal/armv7/Pods_CNLiveIntegralModule_Tests_vers.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Pods_CNLiveIntegralModule_Tests.framework/Headers/Pods-CNLiveIntegralModule_Tests-umbrella.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Pods_CNLiveIntegralModule_Tests.framework/Pods_CNLiveIntegralModule_Tests","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Pods_CNLiveIntegralModule_Tests.framework/Modules/module.modulemap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Tests.build/Objects-normal/arm64/Binary/Pods_CNLiveIntegralModule_Tests","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Tests.build/Objects-normal/armv7/Binary/Pods_CNLiveIntegralModule_Tests","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Pods_CNLiveIntegralModule_Tests.framework","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Pods_CNLiveIntegralModule_Tests.framework/Headers","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Pods_CNLiveIntegralModule_Tests.framework/Info.plist","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Tests.build/DerivedSources/Pods_CNLiveIntegralModule_Tests_vers.c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Tests.build/Objects-normal/arm64/Pods_CNLiveIntegralModule_Tests.LinkFileList","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Tests.build/Objects-normal/armv7/Pods_CNLiveIntegralModule_Tests.LinkFileList","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Tests.build/Pods_CNLiveIntegralModule_Tests-all-non-framework-target-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Tests.build/Pods_CNLiveIntegralModule_Tests-all-target-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Tests.build/Pods_CNLiveIntegralModule_Tests-generated-files.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Tests.build/Pods_CNLiveIntegralModule_Tests-own-target-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Tests.build/Pods_CNLiveIntegralModule_Tests-project-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Tests.build/Pods_CNLiveIntegralModule_Tests.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Tests.build/all-product-headers.yaml","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Tests.build/module.modulemap"],"roots":["/tmp/Pods.dst","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build"],"outputs":["<target-Pods-CNLiveIntegralModule_Tests-285b96a559574e49fe0e1a40c03a5a8e0dc92816745535329b7fd5143160da4d-Debug-iphoneos-stale-file-removal>"]}
"<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-Debug-iphoneos-stale-file-removal>": {"tool":"stale-file-removal","expectedOutputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/assetcatalog_generated_info.plist","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Assets.car","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/CAAnimation+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/CALayer+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/NSArray+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/NSAttributedString+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/NSCharacterSet+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/NSMethodSignature+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/NSNumber+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/NSObject+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/NSObject+QMUIMultipleDelegates.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/NSParagraphStyle+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/NSPointerArray+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/NSString+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/NSURL+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIAlbumViewController.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIAlertController.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIAnimationHelper.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIAsset.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIAssetsGroup.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIAssetsManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIButton.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUICellHeightCache.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUICellHeightKeyCache.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUICellSizeKeyCache.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUICollectionViewPagingLayout.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUICommonTableViewController.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUICommonViewController.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIConfiguration.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIConsole.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIConsoleToolbar.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIConsoleViewController.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIDialogViewController.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIDisplayLinkAnimation.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIEmotionInputManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIEmotionView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIEmptyView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIFillButton.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIFloatLayoutView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIGhostButton.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIGridView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIHelper.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIImagePickerCollectionViewCell.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIImagePickerHelper.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIImagePickerPreviewViewController.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIImagePickerViewController.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIImagePreviewView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIImagePreviewViewController.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIImagePreviewViewTransitionAnimator.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIKeyboardManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIKit-dummy.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIKit_vers.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUILabel.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUILinkButton.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUILog+QMUIConsole.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUILogItem.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUILogManagerViewController.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUILogNameManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUILogger+QMUIConfigurationTemplate.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUILogger.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIMarqueeLabel.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIModalPresentationViewController.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIMoreOperationController.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIMultipleDelegates.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUINavigationBarScrollingAnimator.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUINavigationBarScrollingSnapAnimator.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUINavigationButton.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUINavigationController.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUINavigationTitleView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIOrderedDictionary.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIPieProgressView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIPopupContainerView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIPopupMenuBaseItem.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIPopupMenuButtonItem.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIPopupMenuView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIRuntime.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIScrollAnimator.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUISearchBar.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUISearchController.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUISegmentedControl.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUISlider.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIStaticTableViewCellData.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIStaticTableViewCellDataSource.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUITabBarViewController.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUITableView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUITableViewCell.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUITableViewHeaderFooterView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUITestView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUITextField.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUITextView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIThemeManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIThemeManagerCenter.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIThemePrivate.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUITips.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIToastAnimator.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIToastBackgroundView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIToastContentView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIToastView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIToolbarButton.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIVisualEffectView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIWeakObjectContainer.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIWindowSizeMonitor.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIZoomImageView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIActivityIndicatorView+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIBarItem+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIBarItem+QMUIBadge.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIBezierPath+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIButton+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UICollectionView+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UICollectionView+QMUICellSizeKeyCache.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIColor+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIColor+QMUITheme.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIControl+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIFont+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIGestureRecognizer+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIImage+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIImage+QMUITheme.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIImageView+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIInterface+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UILabel+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIMenuController+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UINavigationBar+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UINavigationBar+Transition.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UINavigationController+NavigationBarTransition.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UINavigationController+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIScrollView+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UISearchBar+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UISearchController+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UISwitch+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UITabBar+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UITabBarItem+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UITableView+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UITableView+QMUICellHeightKeyCache.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UITableView+QMUIStaticCell.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UITableViewCell+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UITextField+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UITextView+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UITraitCollection+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIView+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIView+QMUITheme.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIViewController+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIViewController+QMUITheme.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIVisualEffect+QMUITheme.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIWindow+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/CAAnimation+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/CALayer+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/NSArray+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/NSAttributedString+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/NSCharacterSet+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/NSMethodSignature+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/NSNumber+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/NSObject+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/NSObject+QMUIMultipleDelegates.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/NSParagraphStyle+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/NSPointerArray+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/NSString+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/NSURL+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIAlbumViewController.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIAlertController.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIAnimationHelper.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIAsset.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIAssetsGroup.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIAssetsManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIButton.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUICellHeightCache.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUICellHeightKeyCache.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUICellSizeKeyCache.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUICollectionViewPagingLayout.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUICommonTableViewController.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUICommonViewController.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIConfiguration.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIConsole.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIConsoleToolbar.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIConsoleViewController.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIDialogViewController.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIDisplayLinkAnimation.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIEmotionInputManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIEmotionView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIEmptyView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIFillButton.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIFloatLayoutView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIGhostButton.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIGridView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIHelper.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIImagePickerCollectionViewCell.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIImagePickerHelper.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIImagePickerPreviewViewController.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIImagePickerViewController.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIImagePreviewView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIImagePreviewViewController.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIImagePreviewViewTransitionAnimator.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIKeyboardManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIKit-dummy.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIKit_vers.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUILabel.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUILinkButton.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUILog+QMUIConsole.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUILogItem.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUILogManagerViewController.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUILogNameManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUILogger+QMUIConfigurationTemplate.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUILogger.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIMarqueeLabel.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIModalPresentationViewController.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIMoreOperationController.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIMultipleDelegates.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUINavigationBarScrollingAnimator.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUINavigationBarScrollingSnapAnimator.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUINavigationButton.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUINavigationController.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUINavigationTitleView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIOrderedDictionary.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIPieProgressView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIPopupContainerView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIPopupMenuBaseItem.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIPopupMenuButtonItem.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIPopupMenuView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIRuntime.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIScrollAnimator.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUISearchBar.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUISearchController.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUISegmentedControl.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUISlider.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIStaticTableViewCellData.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIStaticTableViewCellDataSource.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUITabBarViewController.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUITableView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUITableViewCell.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUITableViewHeaderFooterView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUITestView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUITextField.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUITextView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIThemeManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIThemeManagerCenter.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIThemePrivate.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUITips.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIToastAnimator.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIToastBackgroundView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIToastContentView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIToastView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIToolbarButton.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIVisualEffectView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIWeakObjectContainer.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIWindowSizeMonitor.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIZoomImageView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIActivityIndicatorView+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIBarItem+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIBarItem+QMUIBadge.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIBezierPath+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIButton+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UICollectionView+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UICollectionView+QMUICellSizeKeyCache.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIColor+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIColor+QMUITheme.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIControl+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIFont+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIGestureRecognizer+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIImage+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIImage+QMUITheme.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIImageView+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIInterface+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UILabel+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIMenuController+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UINavigationBar+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UINavigationBar+Transition.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UINavigationController+NavigationBarTransition.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UINavigationController+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIScrollView+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UISearchBar+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UISearchController+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UISwitch+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UITabBar+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UITabBarItem+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UITableView+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UITableView+QMUICellHeightKeyCache.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UITableView+QMUIStaticCell.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UITableViewCell+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UITextField+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UITextView+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UITraitCollection+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIView+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIView+QMUITheme.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIViewController+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIViewController+QMUITheme.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIVisualEffect+QMUITheme.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIWindow+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIAsset.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIAssetsGroup.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIAssetsManager.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/CAAnimation+QMUI.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIAlbumViewController.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIImagePickerCollectionViewCell.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIImagePickerHelper.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIImagePickerPreviewViewController.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIImagePickerViewController.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UINavigationBar+Transition.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UINavigationController+NavigationBarTransition.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIAlertController.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIAnimationHelper.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIDisplayLinkAnimation.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIEasings.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UIBarItem+QMUIBadge.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIButton.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIFillButton.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIGhostButton.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUILinkButton.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUINavigationButton.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIToolbarButton.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUICellHeightCache.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUICellHeightKeyCache.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UITableView+QMUICellHeightKeyCache.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUICellSizeKeyCache.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UICollectionView+QMUICellSizeKeyCache.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUICollectionViewPagingLayout.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIConsole.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIConsoleToolbar.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIConsoleViewController.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUILog+QMUIConsole.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIDialogViewController.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIEmotionInputManager.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIEmotionView.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIEmptyView.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIFloatLayoutView.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIGridView.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIImagePreviewView.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIImagePreviewViewController.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIImagePreviewViewTransitionAnimator.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIKeyboardManager.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUILabel.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUILog.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUILogItem.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUILogNameManager.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUILogger.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUILogManagerViewController.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUILogger+QMUIConfigurationTemplate.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIMarqueeLabel.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIModalPresentationViewController.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIMoreOperationController.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/NSObject+QMUIMultipleDelegates.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIMultipleDelegates.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUINavigationTitleView.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIOrderedDictionary.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIPieProgressView.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIPopupContainerView.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIPopupMenuBaseItem.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIPopupMenuButtonItem.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIPopupMenuItemProtocol.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIPopupMenuView.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUINavigationBarScrollingAnimator.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUINavigationBarScrollingSnapAnimator.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIScrollAnimator.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUISearchBar.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUISearchController.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUISegmentedControl.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUISlider.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUITableView.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUITableViewCell.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUITableViewHeaderFooterView.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUITableViewProtocols.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUITestView.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUITextField.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUITextView.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUITheme.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIThemeManager.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIThemeManagerCenter.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIThemePrivate.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UIColor+QMUITheme.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UIImage+QMUITheme.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UIView+QMUITheme.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UIViewController+QMUITheme.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UIVisualEffect+QMUITheme.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUITips.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIVisualEffectView.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIWeakObjectContainer.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIWindowSizeMonitor.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIZoomImageView.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIStaticTableViewCellData.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIStaticTableViewCellDataSource.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UITableView+QMUIStaticCell.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIToastAnimator.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIToastBackgroundView.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIToastContentView.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIToastView.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUICommonDefines.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIConfiguration.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIConfigurationMacros.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUICore.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIHelper.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUILab.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIRuntime.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIKit.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUICommonTableViewController.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUICommonViewController.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUINavigationController.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUITabBarViewController.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/CALayer+QMUI.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/NSArray+QMUI.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/NSAttributedString+QMUI.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/NSCharacterSet+QMUI.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/NSMethodSignature+QMUI.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/NSNumber+QMUI.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/NSObject+QMUI.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/NSParagraphStyle+QMUI.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/NSPointerArray+QMUI.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/NSString+QMUI.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/NSURL+QMUI.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UIActivityIndicatorView+QMUI.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UIBarItem+QMUI.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UIBezierPath+QMUI.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UIButton+QMUI.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UICollectionView+QMUI.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UIColor+QMUI.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UIControl+QMUI.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UIFont+QMUI.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UIGestureRecognizer+QMUI.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UIImage+QMUI.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UIImageView+QMUI.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UIInterface+QMUI.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UILabel+QMUI.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UIMenuController+QMUI.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UINavigationBar+QMUI.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UINavigationController+QMUI.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UIScrollView+QMUI.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UISearchBar+QMUI.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UISearchController+QMUI.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UISwitch+QMUI.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UITabBar+QMUI.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UITabBarItem+QMUI.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UITableView+QMUI.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UITableViewCell+QMUI.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UITextField+QMUI.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UITextView+QMUI.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UITraitCollection+QMUI.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UIView+QMUI.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UIViewController+QMUI.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UIWindow+QMUI.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIKit-umbrella.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/QMUIKit","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Modules/module.modulemap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/Binary/QMUIKit","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/Binary/QMUIKit","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Info.plist","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/QMUIKit_vers.c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIKit.LinkFileList","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIKit.LinkFileList","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-target-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap"],"roots":["/tmp/Pods.dst","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build"],"outputs":["<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-Debug-iphoneos-stale-file-removal>"]}
"<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d-Debug-iphoneos-stale-file-removal>": {"tool":"stale-file-removal","expectedOutputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/NSBezierPath+RoundedCorners.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/NSButton+WebCache.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/NSData+ImageContentType.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/NSImage+Compatibility.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDAnimatedImage.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDAnimatedImageRep.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDAnimatedImageView+WebCache.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDAnimatedImageView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDAsyncBlockOperation.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDDiskCache.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDImageAPNGCoder.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDImageAssetManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDImageCache.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDImageCacheConfig.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDImageCacheDefine.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDImageCachesManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDImageCachesManagerOperation.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDImageCoder.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDImageCoderHelper.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDImageCodersManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDImageFrame.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDImageGIFCoder.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDImageGraphics.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDImageHEICCoder.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDImageIOAnimatedCoder.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDImageIOCoder.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDImageLoader.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDImageLoadersManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDImageTransformer.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDInternalMacros.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDMemoryCache.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDWeakProxy.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDWebImage-dummy.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDWebImageCacheKeyFilter.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDWebImageCacheSerializer.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDWebImageCompat.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDWebImageDefine.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDWebImageDownloader.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDWebImageDownloaderConfig.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDWebImageDownloaderOperation.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDWebImageDownloaderRequestModifier.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDWebImageError.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDWebImageIndicator.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDWebImageManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDWebImageOptionsProcessor.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDWebImagePrefetcher.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDWebImageTransition.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDWebImage_vers.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/UIButton+WebCache.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/UIColor+HexString.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/UIImage+ForceDecode.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/UIImage+GIF.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/UIImage+MemoryCacheCost.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/UIImage+Metadata.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/UIImage+MultiFormat.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/UIImage+Transform.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/UIImageView+HighlightedWebCache.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/UIImageView+WebCache.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/UIView+WebCache.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/UIView+WebCacheOperation.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/NSBezierPath+RoundedCorners.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/NSButton+WebCache.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/NSData+ImageContentType.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/NSImage+Compatibility.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDAnimatedImage.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDAnimatedImageRep.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDAnimatedImageView+WebCache.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDAnimatedImageView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDAsyncBlockOperation.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDDiskCache.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDImageAPNGCoder.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDImageAssetManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDImageCache.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDImageCacheConfig.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDImageCacheDefine.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDImageCachesManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDImageCachesManagerOperation.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDImageCoder.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDImageCoderHelper.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDImageCodersManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDImageFrame.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDImageGIFCoder.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDImageGraphics.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDImageHEICCoder.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDImageIOAnimatedCoder.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDImageIOCoder.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDImageLoader.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDImageLoadersManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDImageTransformer.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDInternalMacros.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDMemoryCache.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDWeakProxy.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDWebImage-dummy.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDWebImageCacheKeyFilter.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDWebImageCacheSerializer.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDWebImageCompat.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDWebImageDefine.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDWebImageDownloader.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDWebImageDownloaderConfig.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDWebImageDownloaderOperation.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDWebImageDownloaderRequestModifier.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDWebImageError.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDWebImageIndicator.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDWebImageManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDWebImageOptionsProcessor.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDWebImagePrefetcher.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDWebImageTransition.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDWebImage_vers.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/UIButton+WebCache.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/UIColor+HexString.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/UIImage+ForceDecode.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/UIImage+GIF.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/UIImage+MemoryCacheCost.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/UIImage+Metadata.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/UIImage+MultiFormat.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/UIImage+Transform.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/UIImageView+HighlightedWebCache.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/UIImageView+WebCache.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/UIView+WebCache.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/UIView+WebCacheOperation.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/NSButton+WebCache.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/NSData+ImageContentType.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/NSImage+Compatibility.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDAnimatedImage.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDAnimatedImageRep.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDAnimatedImageView+WebCache.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDAnimatedImageView.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDDiskCache.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDImageAPNGCoder.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDImageCache.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDImageCacheConfig.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDImageCacheDefine.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDImageCachesManager.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDImageCoder.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDImageCoderHelper.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDImageCodersManager.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDImageFrame.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDImageGIFCoder.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDImageGraphics.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDImageHEICCoder.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDImageIOAnimatedCoder.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDImageIOCoder.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDImageLoader.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDImageLoadersManager.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDImageTransformer.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDMemoryCache.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDWebImageCacheKeyFilter.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDWebImageCacheSerializer.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDWebImageCompat.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDWebImageDefine.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDWebImageDownloader.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDWebImageDownloaderConfig.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDWebImageDownloaderOperation.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDWebImageDownloaderRequestModifier.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDWebImageError.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDWebImageIndicator.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDWebImageManager.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDWebImageOperation.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDWebImageOptionsProcessor.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDWebImagePrefetcher.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDWebImageTransition.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/UIButton+WebCache.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/UIImage+ForceDecode.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/UIImage+GIF.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/UIImage+MemoryCacheCost.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/UIImage+Metadata.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/UIImage+MultiFormat.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/UIImage+Transform.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/UIImageView+HighlightedWebCache.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/UIImageView+WebCache.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/UIView+WebCache.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/UIView+WebCacheOperation.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/PrivateHeaders/NSBezierPath+RoundedCorners.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/PrivateHeaders/SDAsyncBlockOperation.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/PrivateHeaders/SDImageAssetManager.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/PrivateHeaders/SDImageCachesManagerOperation.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/PrivateHeaders/SDImageHEICCoderInternal.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/PrivateHeaders/SDImageIOAnimatedCoderInternal.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/PrivateHeaders/SDInternalMacros.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/PrivateHeaders/SDWeakProxy.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/PrivateHeaders/SDmetamacros.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/PrivateHeaders/UIColor+HexString.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDWebImage.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDWebImage-umbrella.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/SDWebImage","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Modules/module.modulemap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/Binary/SDWebImage","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/Binary/SDWebImage","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/PrivateHeaders","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Info.plist","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources/SDWebImage_vers.c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDWebImage.LinkFileList","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDWebImage.LinkFileList","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-all-non-framework-target-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-all-target-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-generated-files.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-own-target-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-project-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/all-product-headers.yaml","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/module.modulemap"],"roots":["/tmp/Pods.dst","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build"],"outputs":["<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d-Debug-iphoneos-stale-file-removal>"]}
"<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-Debug-iphoneos-stale-file-removal>": {"tool":"stale-file-removal","expectedOutputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/CALayer+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/CALayer+YYWebImage.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/MKAnnotationView+YYWebImage.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/NSArray+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/NSAttributedString+YYText.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/NSBundle+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/NSData+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/NSDate+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/NSDictionary+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/NSKeyedUnarchiver+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/NSNotificationCenter+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/NSNumber+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/NSObject+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/NSObject+YYAddForARC.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/NSObject+YYAddForKVO.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/NSObject+YYModel.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/NSParagraphStyle+YYText.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/NSString+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/NSThread+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/NSTimer+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/UIApplication+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/UIBarButtonItem+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/UIBezierPath+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/UIButton+YYWebImage.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/UIColor+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/UIControl+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/UIDevice+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/UIFont+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/UIGestureRecognizer+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/UIImage+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/UIImageView+YYWebImage.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/UIPasteboard+YYText.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/UIScreen+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/UIScrollView+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/UITableView+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/UITextField+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/UIView+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYAnimatedImageView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYAsyncLayer.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYCGUtilities.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYCache.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYClassInfo.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYDiskCache.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYDispatchQueuePool.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYFileHash.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYFrameImage.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYGestureRecognizer.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYImage.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYImageCache.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYImageCoder.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYKVStorage.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYKeychain.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYKit-dummy.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYKit_vers.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYLabel.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYMemoryCache.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYReachability.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYSentinel.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYSpriteSheetImage.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYTextArchiver.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYTextAttribute.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYTextContainerView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYTextDebugOption.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYTextEffectWindow.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYTextInput.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYTextKeyboardManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYTextLayout.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYTextLine.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYTextMagnifier.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYTextParser.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYTextRubyAnnotation.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYTextRunDelegate.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYTextSelectionView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYTextUtilities.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYTextView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYThreadSafeArray.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYThreadSafeDictionary.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYTimer.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYTransaction.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYWeakProxy.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYWebImageManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYWebImageOperation.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/_YYWebImageSetter.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/CALayer+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/CALayer+YYWebImage.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/MKAnnotationView+YYWebImage.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/NSArray+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/NSAttributedString+YYText.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/NSBundle+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/NSData+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/NSDate+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/NSDictionary+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/NSKeyedUnarchiver+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/NSNotificationCenter+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/NSNumber+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/NSObject+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/NSObject+YYAddForARC.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/NSObject+YYAddForKVO.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/NSObject+YYModel.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/NSParagraphStyle+YYText.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/NSString+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/NSThread+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/NSTimer+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/UIApplication+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/UIBarButtonItem+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/UIBezierPath+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/UIButton+YYWebImage.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/UIColor+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/UIControl+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/UIDevice+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/UIFont+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/UIGestureRecognizer+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/UIImage+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/UIImageView+YYWebImage.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/UIPasteboard+YYText.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/UIScreen+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/UIScrollView+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/UITableView+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/UITextField+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/UIView+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYAnimatedImageView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYAsyncLayer.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYCGUtilities.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYCache.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYClassInfo.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYDiskCache.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYDispatchQueuePool.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYFileHash.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYFrameImage.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYGestureRecognizer.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYImage.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYImageCache.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYImageCoder.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYKVStorage.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYKeychain.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYKit-dummy.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYKit_vers.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYLabel.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYMemoryCache.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYReachability.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYSentinel.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYSpriteSheetImage.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYTextArchiver.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYTextAttribute.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYTextContainerView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYTextDebugOption.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYTextEffectWindow.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYTextInput.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYTextKeyboardManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYTextLayout.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYTextLine.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYTextMagnifier.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYTextParser.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYTextRubyAnnotation.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYTextRunDelegate.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYTextSelectionView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYTextUtilities.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYTextView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYThreadSafeArray.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYThreadSafeDictionary.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYTimer.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYTransaction.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYWeakProxy.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYWebImageManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYWebImageOperation.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/_YYWebImageSetter.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYKit-umbrella.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/NSArray+YYAdd.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/NSBundle+YYAdd.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/NSData+YYAdd.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/NSDate+YYAdd.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/NSDictionary+YYAdd.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/NSKeyedUnarchiver+YYAdd.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/NSNotificationCenter+YYAdd.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/NSNumber+YYAdd.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/NSObject+YYAdd.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/NSObject+YYAddForARC.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/NSObject+YYAddForKVO.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/NSString+YYAdd.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/NSThread+YYAdd.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/NSTimer+YYAdd.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/CALayer+YYAdd.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYCGUtilities.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/UIApplication+YYAdd.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/UIBarButtonItem+YYAdd.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/UIBezierPath+YYAdd.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/UIColor+YYAdd.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/UIControl+YYAdd.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/UIDevice+YYAdd.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/UIFont+YYAdd.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/UIGestureRecognizer+YYAdd.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/UIImage+YYAdd.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/UIScreen+YYAdd.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/UIScrollView+YYAdd.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/UITableView+YYAdd.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/UITextField+YYAdd.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/UIView+YYAdd.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYKitMacro.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYCache.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYDiskCache.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYKVStorage.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYMemoryCache.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/CALayer+YYWebImage.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/MKAnnotationView+YYWebImage.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/UIButton+YYWebImage.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/UIImageView+YYWebImage.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/_YYWebImageSetter.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYAnimatedImageView.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYFrameImage.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYImage.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYImageCache.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYImageCoder.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYSpriteSheetImage.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYWebImageManager.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYWebImageOperation.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/NSObject+YYModel.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYClassInfo.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYTextContainerView.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYTextDebugOption.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYTextEffectWindow.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYTextInput.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYTextKeyboardManager.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYTextLayout.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYTextLine.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYTextMagnifier.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYTextSelectionView.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/NSAttributedString+YYText.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/NSParagraphStyle+YYText.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/UIPasteboard+YYText.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYTextArchiver.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYTextAttribute.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYTextParser.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYTextRubyAnnotation.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYTextRunDelegate.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYTextUtilities.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYLabel.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYTextView.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYAsyncLayer.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYDispatchQueuePool.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYFileHash.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYGestureRecognizer.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYKeychain.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYReachability.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYSentinel.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYThreadSafeArray.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYThreadSafeDictionary.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYTimer.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYTransaction.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYWeakProxy.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYKit.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/YYKit","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Modules/module.modulemap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/Binary/YYKit","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/Binary/YYKit","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Info.plist","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources/YYKit_vers.c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYKit.LinkFileList","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYKit.LinkFileList","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-all-non-framework-target-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-all-target-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-generated-files.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-own-target-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-project-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/all-product-headers.yaml","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/module.modulemap"],"roots":["/tmp/Pods.dst","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build"],"outputs":["<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-Debug-iphoneos-stale-file-removal>"]}
"Gate target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--Barrier-ChangeAlternatePermissions": {"tool":"phony","inputs":["<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--Barrier-ChangePermissions>","<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--begin-compiling>"],"outputs":["<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--Barrier-ChangeAlternatePermissions>"]}
"Gate target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--Barrier-ChangePermissions": {"tool":"phony","inputs":["<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--Barrier-StripSymbols>","<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--begin-compiling>"],"outputs":["<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--Barrier-ChangePermissions>"]}
"Gate target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--Barrier-CodeSign": {"tool":"phony","inputs":["<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--Barrier-ChangeAlternatePermissions>","<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--begin-compiling>"],"outputs":["<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--Barrier-CodeSign>"]}
"Gate target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--Barrier-CopyAside": {"tool":"phony","inputs":["<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--ProductPostprocessingTaskProducer>","<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--begin-compiling>"],"outputs":["<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--Barrier-CopyAside>"]}
"Gate target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--Barrier-RegisterExecutionPolicyException": {"tool":"phony","inputs":["<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--Barrier-CodeSign>","<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--begin-compiling>"],"outputs":["<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--Barrier-RegisterExecutionPolicyException>"]}
"Gate target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--Barrier-StripSymbols": {"tool":"phony","inputs":["<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--Barrier-CopyAside>","<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--begin-compiling>"],"outputs":["<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--Barrier-StripSymbols>"]}
"Gate target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--Barrier-Validate": {"tool":"phony","inputs":["<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--Barrier-RegisterExecutionPolicyException>","<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--begin-compiling>","<Touch /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking/AFNetworking.framework>"],"outputs":["<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--Barrier-Validate>"]}
"Gate target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--GeneratedFilesTaskProducer": {"tool":"phony","inputs":["<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--XCFrameworkTaskProducer>","<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--begin-compiling>"],"outputs":["<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--GeneratedFilesTaskProducer>"]}
"Gate target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--HeadermapTaskProducer": {"tool":"phony","inputs":["<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--GeneratedFilesTaskProducer>","<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--begin-compiling>","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/AFNetworking-all-non-framework-target-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/AFNetworking-all-target-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/AFNetworking-generated-files.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/AFNetworking-own-target-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/AFNetworking-project-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/AFNetworking.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/all-product-headers.yaml"],"outputs":["<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--HeadermapTaskProducer>"]}
"Gate target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--InfoPlistTaskProducer": {"tool":"phony","inputs":["<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--HeadermapTaskProducer>","<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--begin-compiling>","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking/AFNetworking.framework/Info.plist"],"outputs":["<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--InfoPlistTaskProducer>"]}
"Gate target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--ModuleMapTaskProducer": {"tool":"phony","inputs":["<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--HeadermapTaskProducer>","<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--begin-compiling>","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking/AFNetworking.framework/Modules/module.modulemap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/module.modulemap"],"outputs":["<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--ModuleMapTaskProducer>"]}
"Gate target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--ProductPostprocessingTaskProducer": {"tool":"phony","inputs":["<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--HeadermapTaskProducer>","<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--phase3-copy-bundle-resources>","<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--InfoPlistTaskProducer>","<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--VersionPlistTaskProducer>","<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--SanitizerTaskProducer>","<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--ModuleMapTaskProducer>","<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--SwiftStandardLibrariesTaskProducer>","<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--StubBinaryTaskProducer>","<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--TestTargetTaskProducer>","<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--begin-compiling>"],"outputs":["<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--ProductPostprocessingTaskProducer>"]}
"Gate target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--ProductStructureTaskProducer": {"tool":"phony","inputs":["<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--start>","<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--begin-compiling>","<MkDir /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking/AFNetworking.framework>","<MkDir /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking/AFNetworking.framework/Headers>"],"outputs":["<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--ProductStructureTaskProducer>"]}
"Gate target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--SanitizerTaskProducer": {"tool":"phony","inputs":["<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--HeadermapTaskProducer>","<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--begin-compiling>"],"outputs":["<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--SanitizerTaskProducer>"]}
"Gate target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--StubBinaryTaskProducer": {"tool":"phony","inputs":["<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--HeadermapTaskProducer>","<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--begin-compiling>"],"outputs":["<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--StubBinaryTaskProducer>"]}
"Gate target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--SwiftStandardLibrariesTaskProducer": {"tool":"phony","inputs":["<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--HeadermapTaskProducer>","<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--phase3-copy-bundle-resources>","<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--begin-compiling>"],"outputs":["<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--SwiftStandardLibrariesTaskProducer>"]}
"Gate target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--TestTargetPostprocessingTaskProducer": {"tool":"phony","inputs":["<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--ProductPostprocessingTaskProducer>","<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--begin-compiling>"],"outputs":["<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--TestTargetPostprocessingTaskProducer>"]}
"Gate target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--TestTargetTaskProducer": {"tool":"phony","inputs":["<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--HeadermapTaskProducer>","<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--begin-compiling>"],"outputs":["<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--TestTargetTaskProducer>"]}
"Gate target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--VersionPlistTaskProducer": {"tool":"phony","inputs":["<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--HeadermapTaskProducer>","<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--begin-compiling>"],"outputs":["<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--VersionPlistTaskProducer>"]}
"Gate target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--XCFrameworkTaskProducer": {"tool":"phony","inputs":["<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--ProductStructureTaskProducer>","<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--begin-compiling>"],"outputs":["<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--XCFrameworkTaskProducer>"]}
"Gate target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--begin-compiling": {"tool":"phony","inputs":["<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1-Debug-iphoneos-stale-file-removal>","<CreateBuildDirectory-/tmp/Pods.dst>","<CreateBuildDirectory-/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build>","<CreateBuildDirectory-/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build>"],"outputs":["<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--begin-compiling>"]}
"Gate target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--end": {"tool":"phony","inputs":["<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--entry>","<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--Barrier-ChangeAlternatePermissions>","<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--Barrier-ChangePermissions>","<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--Barrier-CodeSign>","<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--Barrier-CopyAside>","<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--Barrier-RegisterExecutionPolicyException>","<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--Barrier-StripSymbols>","<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--Barrier-Validate>","<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--GeneratedFilesTaskProducer>","<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--HeadermapTaskProducer>","<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--InfoPlistTaskProducer>","<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--ModuleMapTaskProducer>","<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--ProductPostprocessingTaskProducer>","<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--ProductStructureTaskProducer>","<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--SanitizerTaskProducer>","<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--StubBinaryTaskProducer>","<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--SwiftStandardLibrariesTaskProducer>","<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--TestTargetPostprocessingTaskProducer>","<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--TestTargetTaskProducer>","<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--VersionPlistTaskProducer>","<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--XCFrameworkTaskProducer>","<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--generated-headers>","<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--phase0-copy-headers>","<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--phase1-compile-sources>","<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--phase3-copy-bundle-resources>","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/arm64/AFAutoPurgingImageCache.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/arm64/AFHTTPSessionManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/arm64/AFImageDownloader.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/arm64/AFNetworkActivityIndicatorManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/arm64/AFNetworkReachabilityManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/arm64/AFNetworking-dummy.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/arm64/AFNetworking_vers.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/arm64/AFSecurityPolicy.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/arm64/AFURLRequestSerialization.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/arm64/AFURLResponseSerialization.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/arm64/AFURLSessionManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/arm64/UIActivityIndicatorView+AFNetworking.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/arm64/UIButton+AFNetworking.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/arm64/UIImageView+AFNetworking.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/arm64/UIProgressView+AFNetworking.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/arm64/UIRefreshControl+AFNetworking.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/arm64/UIWebView+AFNetworking.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/armv7/AFAutoPurgingImageCache.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/armv7/AFHTTPSessionManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/armv7/AFImageDownloader.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/armv7/AFNetworkActivityIndicatorManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/armv7/AFNetworkReachabilityManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/armv7/AFNetworking-dummy.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/armv7/AFNetworking_vers.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/armv7/AFSecurityPolicy.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/armv7/AFURLRequestSerialization.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/armv7/AFURLResponseSerialization.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/armv7/AFURLSessionManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/armv7/UIActivityIndicatorView+AFNetworking.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/armv7/UIButton+AFNetworking.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/armv7/UIImageView+AFNetworking.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/armv7/UIProgressView+AFNetworking.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/armv7/UIRefreshControl+AFNetworking.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/armv7/UIWebView+AFNetworking.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking/AFNetworking.framework/Headers/AFCompatibilityMacros.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking/AFNetworking.framework/Headers/AFHTTPSessionManager.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking/AFNetworking.framework/Headers/AFNetworkReachabilityManager.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking/AFNetworking.framework/Headers/AFNetworking.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking/AFNetworking.framework/Headers/AFSecurityPolicy.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking/AFNetworking.framework/Headers/AFURLRequestSerialization.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking/AFNetworking.framework/Headers/AFURLResponseSerialization.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking/AFNetworking.framework/Headers/AFURLSessionManager.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking/AFNetworking.framework/Headers/AFAutoPurgingImageCache.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking/AFNetworking.framework/Headers/AFImageDownloader.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking/AFNetworking.framework/Headers/AFNetworkActivityIndicatorManager.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking/AFNetworking.framework/Headers/UIActivityIndicatorView+AFNetworking.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking/AFNetworking.framework/Headers/UIButton+AFNetworking.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking/AFNetworking.framework/Headers/UIImage+AFNetworking.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking/AFNetworking.framework/Headers/UIImageView+AFNetworking.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking/AFNetworking.framework/Headers/UIKit+AFNetworking.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking/AFNetworking.framework/Headers/UIProgressView+AFNetworking.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking/AFNetworking.framework/Headers/UIRefreshControl+AFNetworking.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking/AFNetworking.framework/Headers/UIWebView+AFNetworking.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking/AFNetworking.framework/Headers/AFNetworking-umbrella.h","<Linked Binary /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking/AFNetworking.framework/AFNetworking>","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking/AFNetworking.framework/Modules/module.modulemap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/arm64/Binary/AFNetworking","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/armv7/Binary/AFNetworking","<MkDir /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking/AFNetworking.framework>","<MkDir /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking/AFNetworking.framework/Headers>","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking/AFNetworking.framework/Info.plist","<Touch /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking/AFNetworking.framework>","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/AFNetworking-all-non-framework-target-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/AFNetworking-all-target-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/AFNetworking-generated-files.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/AFNetworking-own-target-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/AFNetworking-project-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/AFNetworking.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/DerivedSources/AFNetworking_vers.c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/arm64/AFNetworking.LinkFileList","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/armv7/AFNetworking.LinkFileList","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/all-product-headers.yaml","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/module.modulemap"],"outputs":["<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--end>"]}
"Gate target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--entry": {"tool":"phony","inputs":["<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1-Debug-iphoneos-stale-file-removal>","<CreateBuildDirectory-/tmp/Pods.dst>","<CreateBuildDirectory-/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build>","<CreateBuildDirectory-/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build>","<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--begin-compiling>"],"outputs":["<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--entry>"]}
"Gate target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--generated-headers": {"tool":"phony","inputs":["<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--begin-compiling>"],"outputs":["<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--generated-headers>"]}
"Gate target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--immediate": {"tool":"phony","inputs":["<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1-Debug-iphoneos-stale-file-removal>","<CreateBuildDirectory-/tmp/Pods.dst>","<CreateBuildDirectory-/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build>","<CreateBuildDirectory-/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build>"],"outputs":["<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--immediate>"]}
"Gate target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--modules-ready": {"tool":"phony","inputs":["<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--begin-compiling>","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/arm64/AFAutoPurgingImageCache.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/arm64/AFHTTPSessionManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/arm64/AFImageDownloader.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/arm64/AFNetworkActivityIndicatorManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/arm64/AFNetworkReachabilityManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/arm64/AFNetworking-dummy.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/arm64/AFNetworking_vers.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/arm64/AFSecurityPolicy.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/arm64/AFURLRequestSerialization.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/arm64/AFURLResponseSerialization.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/arm64/AFURLSessionManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/arm64/UIActivityIndicatorView+AFNetworking.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/arm64/UIButton+AFNetworking.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/arm64/UIImageView+AFNetworking.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/arm64/UIProgressView+AFNetworking.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/arm64/UIRefreshControl+AFNetworking.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/arm64/UIWebView+AFNetworking.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/armv7/AFAutoPurgingImageCache.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/armv7/AFHTTPSessionManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/armv7/AFImageDownloader.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/armv7/AFNetworkActivityIndicatorManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/armv7/AFNetworkReachabilityManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/armv7/AFNetworking-dummy.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/armv7/AFNetworking_vers.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/armv7/AFSecurityPolicy.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/armv7/AFURLRequestSerialization.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/armv7/AFURLResponseSerialization.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/armv7/AFURLSessionManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/armv7/UIActivityIndicatorView+AFNetworking.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/armv7/UIButton+AFNetworking.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/armv7/UIImageView+AFNetworking.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/armv7/UIProgressView+AFNetworking.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/armv7/UIRefreshControl+AFNetworking.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/armv7/UIWebView+AFNetworking.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking/AFNetworking.framework/Headers/AFCompatibilityMacros.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking/AFNetworking.framework/Headers/AFHTTPSessionManager.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking/AFNetworking.framework/Headers/AFNetworkReachabilityManager.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking/AFNetworking.framework/Headers/AFNetworking.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking/AFNetworking.framework/Headers/AFSecurityPolicy.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking/AFNetworking.framework/Headers/AFURLRequestSerialization.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking/AFNetworking.framework/Headers/AFURLResponseSerialization.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking/AFNetworking.framework/Headers/AFURLSessionManager.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking/AFNetworking.framework/Headers/AFAutoPurgingImageCache.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking/AFNetworking.framework/Headers/AFImageDownloader.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking/AFNetworking.framework/Headers/AFNetworkActivityIndicatorManager.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking/AFNetworking.framework/Headers/UIActivityIndicatorView+AFNetworking.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking/AFNetworking.framework/Headers/UIButton+AFNetworking.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking/AFNetworking.framework/Headers/UIImage+AFNetworking.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking/AFNetworking.framework/Headers/UIImageView+AFNetworking.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking/AFNetworking.framework/Headers/UIKit+AFNetworking.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking/AFNetworking.framework/Headers/UIProgressView+AFNetworking.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking/AFNetworking.framework/Headers/UIRefreshControl+AFNetworking.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking/AFNetworking.framework/Headers/UIWebView+AFNetworking.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking/AFNetworking.framework/Headers/AFNetworking-umbrella.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/DerivedSources/AFNetworking_vers.c"],"outputs":["<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--modules-ready>"]}
"Gate target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--phase0-copy-headers": {"tool":"phony","inputs":["<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--HeadermapTaskProducer>","<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--begin-compiling>","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking/AFNetworking.framework/Headers/AFCompatibilityMacros.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking/AFNetworking.framework/Headers/AFHTTPSessionManager.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking/AFNetworking.framework/Headers/AFNetworkReachabilityManager.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking/AFNetworking.framework/Headers/AFNetworking.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking/AFNetworking.framework/Headers/AFSecurityPolicy.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking/AFNetworking.framework/Headers/AFURLRequestSerialization.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking/AFNetworking.framework/Headers/AFURLResponseSerialization.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking/AFNetworking.framework/Headers/AFURLSessionManager.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking/AFNetworking.framework/Headers/AFAutoPurgingImageCache.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking/AFNetworking.framework/Headers/AFImageDownloader.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking/AFNetworking.framework/Headers/AFNetworkActivityIndicatorManager.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking/AFNetworking.framework/Headers/UIActivityIndicatorView+AFNetworking.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking/AFNetworking.framework/Headers/UIButton+AFNetworking.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking/AFNetworking.framework/Headers/UIImage+AFNetworking.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking/AFNetworking.framework/Headers/UIImageView+AFNetworking.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking/AFNetworking.framework/Headers/UIKit+AFNetworking.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking/AFNetworking.framework/Headers/UIProgressView+AFNetworking.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking/AFNetworking.framework/Headers/UIRefreshControl+AFNetworking.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking/AFNetworking.framework/Headers/UIWebView+AFNetworking.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking/AFNetworking.framework/Headers/AFNetworking-umbrella.h"],"outputs":["<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--phase0-copy-headers>"]}
"Gate target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--phase1-compile-sources": {"tool":"phony","inputs":["<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--phase0-copy-headers>","<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--begin-compiling>","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/arm64/AFAutoPurgingImageCache.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/arm64/AFHTTPSessionManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/arm64/AFImageDownloader.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/arm64/AFNetworkActivityIndicatorManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/arm64/AFNetworkReachabilityManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/arm64/AFNetworking-dummy.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/arm64/AFNetworking_vers.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/arm64/AFSecurityPolicy.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/arm64/AFURLRequestSerialization.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/arm64/AFURLResponseSerialization.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/arm64/AFURLSessionManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/arm64/UIActivityIndicatorView+AFNetworking.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/arm64/UIButton+AFNetworking.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/arm64/UIImageView+AFNetworking.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/arm64/UIProgressView+AFNetworking.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/arm64/UIRefreshControl+AFNetworking.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/arm64/UIWebView+AFNetworking.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/armv7/AFAutoPurgingImageCache.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/armv7/AFHTTPSessionManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/armv7/AFImageDownloader.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/armv7/AFNetworkActivityIndicatorManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/armv7/AFNetworkReachabilityManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/armv7/AFNetworking-dummy.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/armv7/AFNetworking_vers.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/armv7/AFSecurityPolicy.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/armv7/AFURLRequestSerialization.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/armv7/AFURLResponseSerialization.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/armv7/AFURLSessionManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/armv7/UIActivityIndicatorView+AFNetworking.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/armv7/UIButton+AFNetworking.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/armv7/UIImageView+AFNetworking.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/armv7/UIProgressView+AFNetworking.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/armv7/UIRefreshControl+AFNetworking.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/armv7/UIWebView+AFNetworking.o","<Linked Binary /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking/AFNetworking.framework/AFNetworking>","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/arm64/Binary/AFNetworking","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/armv7/Binary/AFNetworking","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/DerivedSources/AFNetworking_vers.c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/arm64/AFNetworking.LinkFileList","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/armv7/AFNetworking.LinkFileList"],"outputs":["<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--phase1-compile-sources>"]}
"Gate target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--phase3-copy-bundle-resources": {"tool":"phony","inputs":["<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--phase1-compile-sources>","<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--begin-compiling>"],"outputs":["<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--phase3-copy-bundle-resources>"]}
"Gate target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--Barrier-ChangeAlternatePermissions": {"tool":"phony","inputs":["<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--Barrier-ChangePermissions>","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--begin-compiling>"],"outputs":["<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--Barrier-ChangeAlternatePermissions>"]}
"Gate target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--Barrier-ChangePermissions": {"tool":"phony","inputs":["<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--Barrier-StripSymbols>","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--begin-compiling>"],"outputs":["<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--Barrier-ChangePermissions>"]}
"Gate target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--Barrier-CodeSign": {"tool":"phony","inputs":["<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--Barrier-ChangeAlternatePermissions>","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--begin-compiling>"],"outputs":["<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--Barrier-CodeSign>"]}
"Gate target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--Barrier-CopyAside": {"tool":"phony","inputs":["<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--ProductPostprocessingTaskProducer>","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--begin-compiling>"],"outputs":["<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--Barrier-CopyAside>"]}
"Gate target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--Barrier-RegisterExecutionPolicyException": {"tool":"phony","inputs":["<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--Barrier-CodeSign>","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--begin-compiling>"],"outputs":["<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--Barrier-RegisterExecutionPolicyException>"]}
"Gate target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--Barrier-StripSymbols": {"tool":"phony","inputs":["<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--Barrier-CopyAside>","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--begin-compiling>"],"outputs":["<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--Barrier-StripSymbols>"]}
"Gate target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--Barrier-Validate": {"tool":"phony","inputs":["<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--Barrier-RegisterExecutionPolicyException>","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--begin-compiling>","<Touch /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/CNLiveBaseKit.framework>"],"outputs":["<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--Barrier-Validate>"]}
"Gate target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--GeneratedFilesTaskProducer": {"tool":"phony","inputs":["<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--XCFrameworkTaskProducer>","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--begin-compiling>"],"outputs":["<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--GeneratedFilesTaskProducer>"]}
"Gate target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--HeadermapTaskProducer": {"tool":"phony","inputs":["<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--GeneratedFilesTaskProducer>","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--begin-compiling>","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/CNLiveBaseKit-all-non-framework-target-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/CNLiveBaseKit-all-target-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/CNLiveBaseKit-generated-files.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/CNLiveBaseKit-own-target-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/CNLiveBaseKit-project-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/CNLiveBaseKit.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/all-product-headers.yaml"],"outputs":["<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--HeadermapTaskProducer>"]}
"Gate target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--InfoPlistTaskProducer": {"tool":"phony","inputs":["<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--HeadermapTaskProducer>","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--begin-compiling>","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/CNLiveBaseKit.framework/Info.plist"],"outputs":["<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--InfoPlistTaskProducer>"]}
"Gate target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--ModuleMapTaskProducer": {"tool":"phony","inputs":["<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--HeadermapTaskProducer>","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--begin-compiling>","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/CNLiveBaseKit.framework/Modules/module.modulemap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/module.modulemap"],"outputs":["<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--ModuleMapTaskProducer>"]}
"Gate target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--ProductPostprocessingTaskProducer": {"tool":"phony","inputs":["<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--HeadermapTaskProducer>","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--phase3-copy-bundle-resources>","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--InfoPlistTaskProducer>","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--VersionPlistTaskProducer>","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--SanitizerTaskProducer>","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--ModuleMapTaskProducer>","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--SwiftStandardLibrariesTaskProducer>","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--StubBinaryTaskProducer>","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--TestTargetTaskProducer>","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--begin-compiling>"],"outputs":["<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--ProductPostprocessingTaskProducer>"]}
"Gate target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--ProductStructureTaskProducer": {"tool":"phony","inputs":["<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--start>","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--begin-compiling>","<MkDir /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/CNLiveBaseKit.framework>","<MkDir /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/CNLiveBaseKit.framework/Headers>"],"outputs":["<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--ProductStructureTaskProducer>"]}
"Gate target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--SanitizerTaskProducer": {"tool":"phony","inputs":["<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--HeadermapTaskProducer>","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--begin-compiling>"],"outputs":["<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--SanitizerTaskProducer>"]}
"Gate target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--StubBinaryTaskProducer": {"tool":"phony","inputs":["<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--HeadermapTaskProducer>","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--begin-compiling>"],"outputs":["<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--StubBinaryTaskProducer>"]}
"Gate target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--SwiftStandardLibrariesTaskProducer": {"tool":"phony","inputs":["<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--HeadermapTaskProducer>","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--phase3-copy-bundle-resources>","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--begin-compiling>"],"outputs":["<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--SwiftStandardLibrariesTaskProducer>"]}
"Gate target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--TestTargetPostprocessingTaskProducer": {"tool":"phony","inputs":["<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--ProductPostprocessingTaskProducer>","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--begin-compiling>"],"outputs":["<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--TestTargetPostprocessingTaskProducer>"]}
"Gate target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--TestTargetTaskProducer": {"tool":"phony","inputs":["<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--HeadermapTaskProducer>","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--begin-compiling>"],"outputs":["<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--TestTargetTaskProducer>"]}
"Gate target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--VersionPlistTaskProducer": {"tool":"phony","inputs":["<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--HeadermapTaskProducer>","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--begin-compiling>"],"outputs":["<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--VersionPlistTaskProducer>"]}
"Gate target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--XCFrameworkTaskProducer": {"tool":"phony","inputs":["<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--ProductStructureTaskProducer>","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--begin-compiling>"],"outputs":["<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--XCFrameworkTaskProducer>"]}
"Gate target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--begin-compiling": {"tool":"phony","inputs":["<target-CNLiveTripartiteManagement-285b96a559574e49fe0e1a40c03a5a8ec69cdcecdf4ee3a594726fb547f0e760--modules-ready>","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184-Debug-iphoneos-stale-file-removal>","<CreateBuildDirectory-/tmp/Pods.dst>","<CreateBuildDirectory-/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build>","<CreateBuildDirectory-/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build>"],"outputs":["<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--begin-compiling>"]}
"Gate target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--end": {"tool":"phony","inputs":["<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--entry>","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--Barrier-ChangeAlternatePermissions>","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--Barrier-ChangePermissions>","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--Barrier-CodeSign>","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--Barrier-CopyAside>","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--Barrier-RegisterExecutionPolicyException>","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--Barrier-StripSymbols>","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--Barrier-Validate>","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--GeneratedFilesTaskProducer>","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--HeadermapTaskProducer>","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--InfoPlistTaskProducer>","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--ModuleMapTaskProducer>","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--ProductPostprocessingTaskProducer>","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--ProductStructureTaskProducer>","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--SanitizerTaskProducer>","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--StubBinaryTaskProducer>","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--SwiftStandardLibrariesTaskProducer>","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--TestTargetPostprocessingTaskProducer>","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--TestTargetTaskProducer>","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--VersionPlistTaskProducer>","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--XCFrameworkTaskProducer>","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--generated-headers>","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--phase0-copy-headers>","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--phase1-compile-sources>","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--phase3-copy-bundle-resources>","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/BaseModel.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/CNFontAndRatioTool.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/CNLiveBaseKit-dummy.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/CNLiveBaseKit_vers.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/GTMBase64.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/IOSDeviceConfig.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/JSONKit.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/NSMutableDictionary+Json.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/NSObject+Json.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/NSString+AES.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/NSString+CNLiveExtension.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/PathUtility.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/UIButton+CNCreateButton.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/UIColor+MLPFlatColors.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/UIFont+CNLiveExtension.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/UIFont+TLChat.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/UIImage+CNLiveBaseExtension.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/UIView+CNAlertView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/UIView+Extension.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/BaseModel.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/CNFontAndRatioTool.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/CNLiveBaseKit-dummy.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/CNLiveBaseKit_vers.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/GTMBase64.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/IOSDeviceConfig.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/JSONKit.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/NSMutableDictionary+Json.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/NSObject+Json.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/NSString+AES.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/NSString+CNLiveExtension.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/PathUtility.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/UIButton+CNCreateButton.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/UIColor+MLPFlatColors.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/UIFont+CNLiveExtension.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/UIFont+TLChat.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/UIImage+CNLiveBaseExtension.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/UIView+CNAlertView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/UIView+Extension.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/CNLiveBaseKit.framework/Headers/BaseModel.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/CNLiveBaseKit.framework/Headers/IOSDeviceConfig.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/CNLiveBaseKit.framework/Headers/IOSDeviceMacro.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/CNLiveBaseKit.framework/Headers/CNLiveDefinesHeader.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/CNLiveBaseKit.framework/Headers/NSString+AES.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/CNLiveBaseKit.framework/Headers/NSString+CNLiveExtension.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/CNLiveBaseKit.framework/Headers/UIButton+CNCreateButton.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/CNLiveBaseKit.framework/Headers/UIFont+TLChat.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/CNLiveBaseKit.framework/Headers/UIImage+CNLiveBaseExtension.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/CNLiveBaseKit.framework/Headers/UIView+CNAlertView.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/CNLiveBaseKit.framework/Headers/UIView+Extension.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/CNLiveBaseKit.framework/Headers/ColorHeaders.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/CNLiveBaseKit.framework/Headers/ColorMacro.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/CNLiveBaseKit.framework/Headers/UIColor+MLPFlatColors.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/CNLiveBaseKit.framework/Headers/GTMBase64.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/CNLiveBaseKit.framework/Headers/GTMDefines.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/CNLiveBaseKit.framework/Headers/PathHeaders.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/CNLiveBaseKit.framework/Headers/PathUtility.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/CNLiveBaseKit.framework/Headers/CNFontAndRatioTool.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/CNLiveBaseKit.framework/Headers/UIFont+CNLiveExtension.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/CNLiveBaseKit.framework/Headers/CNLiveBaseKit.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/CNLiveBaseKit.framework/Headers/JSONKit.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/CNLiveBaseKit.framework/Headers/NSMutableDictionary+Json.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/CNLiveBaseKit.framework/Headers/NSObject+Json.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/CNLiveBaseKit.framework/Headers/CNLiveBaseKit-umbrella.h","<Linked Binary /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/CNLiveBaseKit.framework/CNLiveBaseKit>","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/CNLiveBaseKit.framework/Modules/module.modulemap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/Binary/CNLiveBaseKit","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/Binary/CNLiveBaseKit","<MkDir /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/CNLiveBaseKit.framework>","<MkDir /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/CNLiveBaseKit.framework/Headers>","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/CNLiveBaseKit.framework/Info.plist","<Touch /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/CNLiveBaseKit.framework>","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/CNLiveBaseKit-all-non-framework-target-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/CNLiveBaseKit-all-target-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/CNLiveBaseKit-generated-files.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/CNLiveBaseKit-own-target-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/CNLiveBaseKit-project-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/CNLiveBaseKit.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/DerivedSources/CNLiveBaseKit_vers.c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/CNLiveBaseKit.LinkFileList","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/CNLiveBaseKit.LinkFileList","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/all-product-headers.yaml","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/module.modulemap"],"outputs":["<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--end>"]}
"Gate target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--entry": {"tool":"phony","inputs":["<target-CNLiveTripartiteManagement-285b96a559574e49fe0e1a40c03a5a8ec69cdcecdf4ee3a594726fb547f0e760--end>","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184-Debug-iphoneos-stale-file-removal>","<CreateBuildDirectory-/tmp/Pods.dst>","<CreateBuildDirectory-/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build>","<CreateBuildDirectory-/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build>","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--begin-compiling>"],"outputs":["<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--entry>"]}
"Gate target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--generated-headers": {"tool":"phony","inputs":["<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--begin-compiling>"],"outputs":["<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--generated-headers>"]}
"Gate target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--immediate": {"tool":"phony","inputs":["<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184-Debug-iphoneos-stale-file-removal>","<CreateBuildDirectory-/tmp/Pods.dst>","<CreateBuildDirectory-/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build>","<CreateBuildDirectory-/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build>"],"outputs":["<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--immediate>"]}
"Gate target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--modules-ready": {"tool":"phony","inputs":["<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--begin-compiling>","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/BaseModel.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/CNFontAndRatioTool.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/CNLiveBaseKit-dummy.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/CNLiveBaseKit_vers.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/GTMBase64.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/IOSDeviceConfig.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/JSONKit.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/NSMutableDictionary+Json.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/NSObject+Json.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/NSString+AES.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/NSString+CNLiveExtension.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/PathUtility.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/UIButton+CNCreateButton.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/UIColor+MLPFlatColors.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/UIFont+CNLiveExtension.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/UIFont+TLChat.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/UIImage+CNLiveBaseExtension.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/UIView+CNAlertView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/UIView+Extension.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/BaseModel.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/CNFontAndRatioTool.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/CNLiveBaseKit-dummy.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/CNLiveBaseKit_vers.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/GTMBase64.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/IOSDeviceConfig.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/JSONKit.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/NSMutableDictionary+Json.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/NSObject+Json.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/NSString+AES.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/NSString+CNLiveExtension.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/PathUtility.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/UIButton+CNCreateButton.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/UIColor+MLPFlatColors.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/UIFont+CNLiveExtension.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/UIFont+TLChat.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/UIImage+CNLiveBaseExtension.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/UIView+CNAlertView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/UIView+Extension.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/CNLiveBaseKit.framework/Headers/BaseModel.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/CNLiveBaseKit.framework/Headers/IOSDeviceConfig.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/CNLiveBaseKit.framework/Headers/IOSDeviceMacro.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/CNLiveBaseKit.framework/Headers/CNLiveDefinesHeader.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/CNLiveBaseKit.framework/Headers/NSString+AES.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/CNLiveBaseKit.framework/Headers/NSString+CNLiveExtension.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/CNLiveBaseKit.framework/Headers/UIButton+CNCreateButton.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/CNLiveBaseKit.framework/Headers/UIFont+TLChat.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/CNLiveBaseKit.framework/Headers/UIImage+CNLiveBaseExtension.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/CNLiveBaseKit.framework/Headers/UIView+CNAlertView.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/CNLiveBaseKit.framework/Headers/UIView+Extension.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/CNLiveBaseKit.framework/Headers/ColorHeaders.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/CNLiveBaseKit.framework/Headers/ColorMacro.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/CNLiveBaseKit.framework/Headers/UIColor+MLPFlatColors.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/CNLiveBaseKit.framework/Headers/GTMBase64.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/CNLiveBaseKit.framework/Headers/GTMDefines.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/CNLiveBaseKit.framework/Headers/PathHeaders.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/CNLiveBaseKit.framework/Headers/PathUtility.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/CNLiveBaseKit.framework/Headers/CNFontAndRatioTool.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/CNLiveBaseKit.framework/Headers/UIFont+CNLiveExtension.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/CNLiveBaseKit.framework/Headers/CNLiveBaseKit.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/CNLiveBaseKit.framework/Headers/JSONKit.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/CNLiveBaseKit.framework/Headers/NSMutableDictionary+Json.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/CNLiveBaseKit.framework/Headers/NSObject+Json.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/CNLiveBaseKit.framework/Headers/CNLiveBaseKit-umbrella.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/DerivedSources/CNLiveBaseKit_vers.c"],"outputs":["<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--modules-ready>"]}
"Gate target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--phase0-copy-headers": {"tool":"phony","inputs":["<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--HeadermapTaskProducer>","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--begin-compiling>","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/CNLiveBaseKit.framework/Headers/BaseModel.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/CNLiveBaseKit.framework/Headers/IOSDeviceConfig.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/CNLiveBaseKit.framework/Headers/IOSDeviceMacro.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/CNLiveBaseKit.framework/Headers/CNLiveDefinesHeader.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/CNLiveBaseKit.framework/Headers/NSString+AES.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/CNLiveBaseKit.framework/Headers/NSString+CNLiveExtension.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/CNLiveBaseKit.framework/Headers/UIButton+CNCreateButton.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/CNLiveBaseKit.framework/Headers/UIFont+TLChat.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/CNLiveBaseKit.framework/Headers/UIImage+CNLiveBaseExtension.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/CNLiveBaseKit.framework/Headers/UIView+CNAlertView.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/CNLiveBaseKit.framework/Headers/UIView+Extension.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/CNLiveBaseKit.framework/Headers/ColorHeaders.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/CNLiveBaseKit.framework/Headers/ColorMacro.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/CNLiveBaseKit.framework/Headers/UIColor+MLPFlatColors.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/CNLiveBaseKit.framework/Headers/GTMBase64.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/CNLiveBaseKit.framework/Headers/GTMDefines.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/CNLiveBaseKit.framework/Headers/PathHeaders.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/CNLiveBaseKit.framework/Headers/PathUtility.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/CNLiveBaseKit.framework/Headers/CNFontAndRatioTool.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/CNLiveBaseKit.framework/Headers/UIFont+CNLiveExtension.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/CNLiveBaseKit.framework/Headers/CNLiveBaseKit.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/CNLiveBaseKit.framework/Headers/JSONKit.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/CNLiveBaseKit.framework/Headers/NSMutableDictionary+Json.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/CNLiveBaseKit.framework/Headers/NSObject+Json.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/CNLiveBaseKit.framework/Headers/CNLiveBaseKit-umbrella.h"],"outputs":["<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--phase0-copy-headers>"]}
"Gate target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--phase1-compile-sources": {"tool":"phony","inputs":["<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--phase0-copy-headers>","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--begin-compiling>","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/BaseModel.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/CNFontAndRatioTool.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/CNLiveBaseKit-dummy.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/CNLiveBaseKit_vers.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/GTMBase64.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/IOSDeviceConfig.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/JSONKit.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/NSMutableDictionary+Json.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/NSObject+Json.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/NSString+AES.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/NSString+CNLiveExtension.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/PathUtility.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/UIButton+CNCreateButton.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/UIColor+MLPFlatColors.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/UIFont+CNLiveExtension.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/UIFont+TLChat.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/UIImage+CNLiveBaseExtension.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/UIView+CNAlertView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/UIView+Extension.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/BaseModel.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/CNFontAndRatioTool.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/CNLiveBaseKit-dummy.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/CNLiveBaseKit_vers.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/GTMBase64.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/IOSDeviceConfig.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/JSONKit.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/NSMutableDictionary+Json.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/NSObject+Json.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/NSString+AES.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/NSString+CNLiveExtension.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/PathUtility.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/UIButton+CNCreateButton.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/UIColor+MLPFlatColors.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/UIFont+CNLiveExtension.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/UIFont+TLChat.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/UIImage+CNLiveBaseExtension.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/UIView+CNAlertView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/UIView+Extension.o","<Linked Binary /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/CNLiveBaseKit.framework/CNLiveBaseKit>","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/Binary/CNLiveBaseKit","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/Binary/CNLiveBaseKit","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/DerivedSources/CNLiveBaseKit_vers.c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/CNLiveBaseKit.LinkFileList","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/CNLiveBaseKit.LinkFileList"],"outputs":["<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--phase1-compile-sources>"]}
"Gate target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--phase3-copy-bundle-resources": {"tool":"phony","inputs":["<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--phase1-compile-sources>","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--begin-compiling>"],"outputs":["<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--phase3-copy-bundle-resources>"]}
"Gate target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--Barrier-ChangeAlternatePermissions": {"tool":"phony","inputs":["<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--Barrier-ChangePermissions>","<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--begin-compiling>"],"outputs":["<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--Barrier-ChangeAlternatePermissions>"]}
"Gate target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--Barrier-ChangePermissions": {"tool":"phony","inputs":["<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--Barrier-StripSymbols>","<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--begin-compiling>"],"outputs":["<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--Barrier-ChangePermissions>"]}
"Gate target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--Barrier-CodeSign": {"tool":"phony","inputs":["<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--Barrier-ChangeAlternatePermissions>","<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--begin-compiling>"],"outputs":["<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--Barrier-CodeSign>"]}
"Gate target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--Barrier-CopyAside": {"tool":"phony","inputs":["<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--ProductPostprocessingTaskProducer>","<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--begin-compiling>"],"outputs":["<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--Barrier-CopyAside>"]}
"Gate target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--Barrier-RegisterExecutionPolicyException": {"tool":"phony","inputs":["<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--Barrier-CodeSign>","<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--begin-compiling>"],"outputs":["<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--Barrier-RegisterExecutionPolicyException>"]}
"Gate target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--Barrier-StripSymbols": {"tool":"phony","inputs":["<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--Barrier-CopyAside>","<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--begin-compiling>"],"outputs":["<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--Barrier-StripSymbols>"]}
"Gate target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--Barrier-Validate": {"tool":"phony","inputs":["<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--Barrier-RegisterExecutionPolicyException>","<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--begin-compiling>","<Touch /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive/CNLiveBeeHive.framework>"],"outputs":["<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--Barrier-Validate>"]}
"Gate target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--GeneratedFilesTaskProducer": {"tool":"phony","inputs":["<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--XCFrameworkTaskProducer>","<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--begin-compiling>"],"outputs":["<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--GeneratedFilesTaskProducer>"]}
"Gate target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--HeadermapTaskProducer": {"tool":"phony","inputs":["<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--GeneratedFilesTaskProducer>","<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--begin-compiling>","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/CNLiveBeeHive-all-non-framework-target-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/CNLiveBeeHive-all-target-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/CNLiveBeeHive-generated-files.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/CNLiveBeeHive-own-target-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/CNLiveBeeHive-project-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/CNLiveBeeHive.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/all-product-headers.yaml"],"outputs":["<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--HeadermapTaskProducer>"]}
"Gate target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--InfoPlistTaskProducer": {"tool":"phony","inputs":["<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--HeadermapTaskProducer>","<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--begin-compiling>","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive/CNLiveBeeHive.framework/Info.plist"],"outputs":["<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--InfoPlistTaskProducer>"]}
"Gate target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--ModuleMapTaskProducer": {"tool":"phony","inputs":["<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--HeadermapTaskProducer>","<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--begin-compiling>","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive/CNLiveBeeHive.framework/Modules/module.modulemap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/module.modulemap"],"outputs":["<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--ModuleMapTaskProducer>"]}
"Gate target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--ProductPostprocessingTaskProducer": {"tool":"phony","inputs":["<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--HeadermapTaskProducer>","<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--phase3-copy-bundle-resources>","<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--InfoPlistTaskProducer>","<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--VersionPlistTaskProducer>","<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--SanitizerTaskProducer>","<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--ModuleMapTaskProducer>","<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--SwiftStandardLibrariesTaskProducer>","<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--StubBinaryTaskProducer>","<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--TestTargetTaskProducer>","<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--begin-compiling>"],"outputs":["<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--ProductPostprocessingTaskProducer>"]}
"Gate target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--ProductStructureTaskProducer": {"tool":"phony","inputs":["<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--start>","<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--begin-compiling>","<MkDir /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive/CNLiveBeeHive.framework>","<MkDir /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive/CNLiveBeeHive.framework/Headers>"],"outputs":["<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--ProductStructureTaskProducer>"]}
"Gate target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--SanitizerTaskProducer": {"tool":"phony","inputs":["<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--HeadermapTaskProducer>","<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--begin-compiling>"],"outputs":["<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--SanitizerTaskProducer>"]}
"Gate target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--StubBinaryTaskProducer": {"tool":"phony","inputs":["<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--HeadermapTaskProducer>","<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--begin-compiling>"],"outputs":["<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--StubBinaryTaskProducer>"]}
"Gate target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--SwiftStandardLibrariesTaskProducer": {"tool":"phony","inputs":["<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--HeadermapTaskProducer>","<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--phase3-copy-bundle-resources>","<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--begin-compiling>"],"outputs":["<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--SwiftStandardLibrariesTaskProducer>"]}
"Gate target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--TestTargetPostprocessingTaskProducer": {"tool":"phony","inputs":["<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--ProductPostprocessingTaskProducer>","<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--begin-compiling>"],"outputs":["<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--TestTargetPostprocessingTaskProducer>"]}
"Gate target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--TestTargetTaskProducer": {"tool":"phony","inputs":["<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--HeadermapTaskProducer>","<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--begin-compiling>"],"outputs":["<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--TestTargetTaskProducer>"]}
"Gate target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--VersionPlistTaskProducer": {"tool":"phony","inputs":["<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--HeadermapTaskProducer>","<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--begin-compiling>"],"outputs":["<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--VersionPlistTaskProducer>"]}
"Gate target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--XCFrameworkTaskProducer": {"tool":"phony","inputs":["<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--ProductStructureTaskProducer>","<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--begin-compiling>"],"outputs":["<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--XCFrameworkTaskProducer>"]}
"Gate target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--begin-compiling": {"tool":"phony","inputs":["<target-CNLiveBeeHive-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8eb19d8bc2256b7e726f7d728ddfaed39d--modules-ready>","<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f-Debug-iphoneos-stale-file-removal>","<CreateBuildDirectory-/tmp/Pods.dst>","<CreateBuildDirectory-/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build>","<CreateBuildDirectory-/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build>"],"outputs":["<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--begin-compiling>"]}
"Gate target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--end": {"tool":"phony","inputs":["<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--entry>","<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--Barrier-ChangeAlternatePermissions>","<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--Barrier-ChangePermissions>","<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--Barrier-CodeSign>","<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--Barrier-CopyAside>","<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--Barrier-RegisterExecutionPolicyException>","<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--Barrier-StripSymbols>","<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--Barrier-Validate>","<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--GeneratedFilesTaskProducer>","<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--HeadermapTaskProducer>","<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--InfoPlistTaskProducer>","<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--ModuleMapTaskProducer>","<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--ProductPostprocessingTaskProducer>","<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--ProductStructureTaskProducer>","<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--SanitizerTaskProducer>","<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--StubBinaryTaskProducer>","<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--SwiftStandardLibrariesTaskProducer>","<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--TestTargetPostprocessingTaskProducer>","<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--TestTargetTaskProducer>","<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--VersionPlistTaskProducer>","<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--XCFrameworkTaskProducer>","<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--generated-headers>","<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--phase0-copy-headers>","<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--phase1-compile-sources>","<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--phase3-copy-bundle-resources>","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/arm64/BHAnnotation.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/arm64/BHAppDelegate.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/arm64/BHConfig.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/arm64/BHContext.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/arm64/BHModuleManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/arm64/BHRouter.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/arm64/BHServiceManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/arm64/BHTimeProfiler.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/arm64/BHWatchDog.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/arm64/BeeHive.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/arm64/CNLiveBeeHive-dummy.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/arm64/CNLiveBeeHive_vers.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/armv7/BHAnnotation.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/armv7/BHAppDelegate.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/armv7/BHConfig.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/armv7/BHContext.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/armv7/BHModuleManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/armv7/BHRouter.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/armv7/BHServiceManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/armv7/BHTimeProfiler.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/armv7/BHWatchDog.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/armv7/BeeHive.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/armv7/CNLiveBeeHive-dummy.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/armv7/CNLiveBeeHive_vers.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive/CNLiveBeeHive.framework/Headers/BHAnnotation.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive/CNLiveBeeHive.framework/Headers/BHAppDelegate.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive/CNLiveBeeHive.framework/Headers/BHCommon.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive/CNLiveBeeHive.framework/Headers/BHConfig.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive/CNLiveBeeHive.framework/Headers/BHContext.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive/CNLiveBeeHive.framework/Headers/BHDefines.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive/CNLiveBeeHive.framework/Headers/BHModuleManager.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive/CNLiveBeeHive.framework/Headers/BHModuleProtocol.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive/CNLiveBeeHive.framework/Headers/BHRouter.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive/CNLiveBeeHive.framework/Headers/BHServiceManager.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive/CNLiveBeeHive.framework/Headers/BHServiceProtocol.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive/CNLiveBeeHive.framework/Headers/BHTimeProfiler.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive/CNLiveBeeHive.framework/Headers/BHWatchDog.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive/CNLiveBeeHive.framework/Headers/BeeHive.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive/CNLiveBeeHive.framework/Headers/CNLiveBeeHive.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive/CNLiveBeeHive.framework/Headers/CNLiveBeeHive-umbrella.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive/CNLiveBeeHive.framework/CNLiveBeeHive.bundle","<Linked Binary /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive/CNLiveBeeHive.framework/CNLiveBeeHive>","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive/CNLiveBeeHive.framework/Modules/module.modulemap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/arm64/Binary/CNLiveBeeHive","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/armv7/Binary/CNLiveBeeHive","<MkDir /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive/CNLiveBeeHive.framework>","<MkDir /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive/CNLiveBeeHive.framework/Headers>","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive/CNLiveBeeHive.framework/Info.plist","<Touch /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive/CNLiveBeeHive.framework>","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/CNLiveBeeHive-all-non-framework-target-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/CNLiveBeeHive-all-target-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/CNLiveBeeHive-generated-files.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/CNLiveBeeHive-own-target-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/CNLiveBeeHive-project-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/CNLiveBeeHive.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/DerivedSources/CNLiveBeeHive_vers.c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/arm64/CNLiveBeeHive.LinkFileList","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/armv7/CNLiveBeeHive.LinkFileList","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/all-product-headers.yaml","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/module.modulemap"],"outputs":["<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--end>"]}
"Gate target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--entry": {"tool":"phony","inputs":["<target-CNLiveBeeHive-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8eb19d8bc2256b7e726f7d728ddfaed39d--end>","<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f-Debug-iphoneos-stale-file-removal>","<CreateBuildDirectory-/tmp/Pods.dst>","<CreateBuildDirectory-/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build>","<CreateBuildDirectory-/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build>","<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--begin-compiling>"],"outputs":["<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--entry>"]}
"Gate target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--generated-headers": {"tool":"phony","inputs":["<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--begin-compiling>"],"outputs":["<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--generated-headers>"]}
"Gate target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--immediate": {"tool":"phony","inputs":["<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f-Debug-iphoneos-stale-file-removal>","<CreateBuildDirectory-/tmp/Pods.dst>","<CreateBuildDirectory-/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build>","<CreateBuildDirectory-/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build>"],"outputs":["<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--immediate>"]}
"Gate target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--modules-ready": {"tool":"phony","inputs":["<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--begin-compiling>","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/arm64/BHAnnotation.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/arm64/BHAppDelegate.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/arm64/BHConfig.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/arm64/BHContext.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/arm64/BHModuleManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/arm64/BHRouter.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/arm64/BHServiceManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/arm64/BHTimeProfiler.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/arm64/BHWatchDog.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/arm64/BeeHive.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/arm64/CNLiveBeeHive-dummy.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/arm64/CNLiveBeeHive_vers.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/armv7/BHAnnotation.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/armv7/BHAppDelegate.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/armv7/BHConfig.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/armv7/BHContext.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/armv7/BHModuleManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/armv7/BHRouter.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/armv7/BHServiceManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/armv7/BHTimeProfiler.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/armv7/BHWatchDog.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/armv7/BeeHive.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/armv7/CNLiveBeeHive-dummy.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/armv7/CNLiveBeeHive_vers.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive/CNLiveBeeHive.framework/Headers/BHAnnotation.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive/CNLiveBeeHive.framework/Headers/BHAppDelegate.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive/CNLiveBeeHive.framework/Headers/BHCommon.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive/CNLiveBeeHive.framework/Headers/BHConfig.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive/CNLiveBeeHive.framework/Headers/BHContext.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive/CNLiveBeeHive.framework/Headers/BHDefines.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive/CNLiveBeeHive.framework/Headers/BHModuleManager.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive/CNLiveBeeHive.framework/Headers/BHModuleProtocol.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive/CNLiveBeeHive.framework/Headers/BHRouter.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive/CNLiveBeeHive.framework/Headers/BHServiceManager.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive/CNLiveBeeHive.framework/Headers/BHServiceProtocol.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive/CNLiveBeeHive.framework/Headers/BHTimeProfiler.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive/CNLiveBeeHive.framework/Headers/BHWatchDog.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive/CNLiveBeeHive.framework/Headers/BeeHive.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive/CNLiveBeeHive.framework/Headers/CNLiveBeeHive.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive/CNLiveBeeHive.framework/Headers/CNLiveBeeHive-umbrella.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/DerivedSources/CNLiveBeeHive_vers.c"],"outputs":["<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--modules-ready>"]}
"Gate target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--phase0-copy-headers": {"tool":"phony","inputs":["<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--HeadermapTaskProducer>","<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--begin-compiling>","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive/CNLiveBeeHive.framework/Headers/BHAnnotation.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive/CNLiveBeeHive.framework/Headers/BHAppDelegate.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive/CNLiveBeeHive.framework/Headers/BHCommon.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive/CNLiveBeeHive.framework/Headers/BHConfig.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive/CNLiveBeeHive.framework/Headers/BHContext.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive/CNLiveBeeHive.framework/Headers/BHDefines.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive/CNLiveBeeHive.framework/Headers/BHModuleManager.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive/CNLiveBeeHive.framework/Headers/BHModuleProtocol.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive/CNLiveBeeHive.framework/Headers/BHRouter.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive/CNLiveBeeHive.framework/Headers/BHServiceManager.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive/CNLiveBeeHive.framework/Headers/BHServiceProtocol.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive/CNLiveBeeHive.framework/Headers/BHTimeProfiler.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive/CNLiveBeeHive.framework/Headers/BHWatchDog.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive/CNLiveBeeHive.framework/Headers/BeeHive.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive/CNLiveBeeHive.framework/Headers/CNLiveBeeHive.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive/CNLiveBeeHive.framework/Headers/CNLiveBeeHive-umbrella.h"],"outputs":["<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--phase0-copy-headers>"]}
"Gate target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--phase1-compile-sources": {"tool":"phony","inputs":["<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--phase0-copy-headers>","<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--begin-compiling>","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/arm64/BHAnnotation.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/arm64/BHAppDelegate.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/arm64/BHConfig.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/arm64/BHContext.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/arm64/BHModuleManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/arm64/BHRouter.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/arm64/BHServiceManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/arm64/BHTimeProfiler.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/arm64/BHWatchDog.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/arm64/BeeHive.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/arm64/CNLiveBeeHive-dummy.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/arm64/CNLiveBeeHive_vers.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/armv7/BHAnnotation.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/armv7/BHAppDelegate.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/armv7/BHConfig.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/armv7/BHContext.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/armv7/BHModuleManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/armv7/BHRouter.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/armv7/BHServiceManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/armv7/BHTimeProfiler.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/armv7/BHWatchDog.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/armv7/BeeHive.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/armv7/CNLiveBeeHive-dummy.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/armv7/CNLiveBeeHive_vers.o","<Linked Binary /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive/CNLiveBeeHive.framework/CNLiveBeeHive>","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/arm64/Binary/CNLiveBeeHive","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/armv7/Binary/CNLiveBeeHive","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/DerivedSources/CNLiveBeeHive_vers.c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/arm64/CNLiveBeeHive.LinkFileList","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/armv7/CNLiveBeeHive.LinkFileList"],"outputs":["<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--phase1-compile-sources>"]}
"Gate target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--phase3-copy-bundle-resources": {"tool":"phony","inputs":["<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--phase1-compile-sources>","<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--begin-compiling>","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive/CNLiveBeeHive.framework/CNLiveBeeHive.bundle"],"outputs":["<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--phase3-copy-bundle-resources>"]}
"Gate target-CNLiveBeeHive-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8eb19d8bc2256b7e726f7d728ddfaed39d--Barrier-ChangeAlternatePermissions": {"tool":"phony","inputs":["<target-CNLiveBeeHive-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8eb19d8bc2256b7e726f7d728ddfaed39d--Barrier-ChangePermissions>","<target-CNLiveBeeHive-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8eb19d8bc2256b7e726f7d728ddfaed39d--begin-compiling>"],"outputs":["<target-CNLiveBeeHive-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8eb19d8bc2256b7e726f7d728ddfaed39d--Barrier-ChangeAlternatePermissions>"]}
"Gate target-CNLiveBeeHive-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8eb19d8bc2256b7e726f7d728ddfaed39d--Barrier-ChangePermissions": {"tool":"phony","inputs":["<target-CNLiveBeeHive-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8eb19d8bc2256b7e726f7d728ddfaed39d--Barrier-StripSymbols>","<target-CNLiveBeeHive-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8eb19d8bc2256b7e726f7d728ddfaed39d--begin-compiling>"],"outputs":["<target-CNLiveBeeHive-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8eb19d8bc2256b7e726f7d728ddfaed39d--Barrier-ChangePermissions>"]}
"Gate target-CNLiveBeeHive-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8eb19d8bc2256b7e726f7d728ddfaed39d--Barrier-CodeSign": {"tool":"phony","inputs":["<target-CNLiveBeeHive-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8eb19d8bc2256b7e726f7d728ddfaed39d--Barrier-ChangeAlternatePermissions>","<target-CNLiveBeeHive-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8eb19d8bc2256b7e726f7d728ddfaed39d--begin-compiling>"],"outputs":["<target-CNLiveBeeHive-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8eb19d8bc2256b7e726f7d728ddfaed39d--Barrier-CodeSign>"]}
"Gate target-CNLiveBeeHive-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8eb19d8bc2256b7e726f7d728ddfaed39d--Barrier-CopyAside": {"tool":"phony","inputs":["<target-CNLiveBeeHive-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8eb19d8bc2256b7e726f7d728ddfaed39d--ProductPostprocessingTaskProducer>","<target-CNLiveBeeHive-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8eb19d8bc2256b7e726f7d728ddfaed39d--begin-compiling>"],"outputs":["<target-CNLiveBeeHive-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8eb19d8bc2256b7e726f7d728ddfaed39d--Barrier-CopyAside>"]}
"Gate target-CNLiveBeeHive-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8eb19d8bc2256b7e726f7d728ddfaed39d--Barrier-RegisterExecutionPolicyException": {"tool":"phony","inputs":["<target-CNLiveBeeHive-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8eb19d8bc2256b7e726f7d728ddfaed39d--Barrier-CodeSign>","<target-CNLiveBeeHive-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8eb19d8bc2256b7e726f7d728ddfaed39d--begin-compiling>"],"outputs":["<target-CNLiveBeeHive-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8eb19d8bc2256b7e726f7d728ddfaed39d--Barrier-RegisterExecutionPolicyException>"]}
"Gate target-CNLiveBeeHive-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8eb19d8bc2256b7e726f7d728ddfaed39d--Barrier-StripSymbols": {"tool":"phony","inputs":["<target-CNLiveBeeHive-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8eb19d8bc2256b7e726f7d728ddfaed39d--Barrier-CopyAside>","<target-CNLiveBeeHive-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8eb19d8bc2256b7e726f7d728ddfaed39d--begin-compiling>"],"outputs":["<target-CNLiveBeeHive-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8eb19d8bc2256b7e726f7d728ddfaed39d--Barrier-StripSymbols>"]}
"Gate target-CNLiveBeeHive-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8eb19d8bc2256b7e726f7d728ddfaed39d--Barrier-Validate": {"tool":"phony","inputs":["<target-CNLiveBeeHive-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8eb19d8bc2256b7e726f7d728ddfaed39d--Barrier-RegisterExecutionPolicyException>","<target-CNLiveBeeHive-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8eb19d8bc2256b7e726f7d728ddfaed39d--begin-compiling>","<Touch /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive/CNLiveBeeHive.bundle>"],"outputs":["<target-CNLiveBeeHive-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8eb19d8bc2256b7e726f7d728ddfaed39d--Barrier-Validate>"]}
"Gate target-CNLiveBeeHive-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8eb19d8bc2256b7e726f7d728ddfaed39d--GeneratedFilesTaskProducer": {"tool":"phony","inputs":["<target-CNLiveBeeHive-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8eb19d8bc2256b7e726f7d728ddfaed39d--XCFrameworkTaskProducer>","<target-CNLiveBeeHive-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8eb19d8bc2256b7e726f7d728ddfaed39d--begin-compiling>"],"outputs":["<target-CNLiveBeeHive-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8eb19d8bc2256b7e726f7d728ddfaed39d--GeneratedFilesTaskProducer>"]}
"Gate target-CNLiveBeeHive-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8eb19d8bc2256b7e726f7d728ddfaed39d--HeadermapTaskProducer": {"tool":"phony","inputs":["<target-CNLiveBeeHive-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8eb19d8bc2256b7e726f7d728ddfaed39d--GeneratedFilesTaskProducer>","<target-CNLiveBeeHive-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8eb19d8bc2256b7e726f7d728ddfaed39d--begin-compiling>","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive-CNLiveBeeHive.build/CNLiveBeeHive-all-non-framework-target-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive-CNLiveBeeHive.build/CNLiveBeeHive-all-target-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive-CNLiveBeeHive.build/CNLiveBeeHive-generated-files.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive-CNLiveBeeHive.build/CNLiveBeeHive-own-target-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive-CNLiveBeeHive.build/CNLiveBeeHive-project-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive-CNLiveBeeHive.build/CNLiveBeeHive.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive-CNLiveBeeHive.build/all-product-headers.yaml"],"outputs":["<target-CNLiveBeeHive-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8eb19d8bc2256b7e726f7d728ddfaed39d--HeadermapTaskProducer>"]}
"Gate target-CNLiveBeeHive-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8eb19d8bc2256b7e726f7d728ddfaed39d--InfoPlistTaskProducer": {"tool":"phony","inputs":["<target-CNLiveBeeHive-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8eb19d8bc2256b7e726f7d728ddfaed39d--HeadermapTaskProducer>","<target-CNLiveBeeHive-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8eb19d8bc2256b7e726f7d728ddfaed39d--begin-compiling>","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive/CNLiveBeeHive.bundle/Info.plist"],"outputs":["<target-CNLiveBeeHive-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8eb19d8bc2256b7e726f7d728ddfaed39d--InfoPlistTaskProducer>"]}
"Gate target-CNLiveBeeHive-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8eb19d8bc2256b7e726f7d728ddfaed39d--ModuleMapTaskProducer": {"tool":"phony","inputs":["<target-CNLiveBeeHive-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8eb19d8bc2256b7e726f7d728ddfaed39d--HeadermapTaskProducer>","<target-CNLiveBeeHive-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8eb19d8bc2256b7e726f7d728ddfaed39d--begin-compiling>"],"outputs":["<target-CNLiveBeeHive-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8eb19d8bc2256b7e726f7d728ddfaed39d--ModuleMapTaskProducer>"]}
"Gate target-CNLiveBeeHive-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8eb19d8bc2256b7e726f7d728ddfaed39d--ProductPostprocessingTaskProducer": {"tool":"phony","inputs":["<target-CNLiveBeeHive-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8eb19d8bc2256b7e726f7d728ddfaed39d--HeadermapTaskProducer>","<target-CNLiveBeeHive-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8eb19d8bc2256b7e726f7d728ddfaed39d--phase2-copy-bundle-resources>","<target-CNLiveBeeHive-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8eb19d8bc2256b7e726f7d728ddfaed39d--InfoPlistTaskProducer>","<target-CNLiveBeeHive-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8eb19d8bc2256b7e726f7d728ddfaed39d--VersionPlistTaskProducer>","<target-CNLiveBeeHive-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8eb19d8bc2256b7e726f7d728ddfaed39d--SanitizerTaskProducer>","<target-CNLiveBeeHive-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8eb19d8bc2256b7e726f7d728ddfaed39d--ModuleMapTaskProducer>","<target-CNLiveBeeHive-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8eb19d8bc2256b7e726f7d728ddfaed39d--SwiftStandardLibrariesTaskProducer>","<target-CNLiveBeeHive-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8eb19d8bc2256b7e726f7d728ddfaed39d--StubBinaryTaskProducer>","<target-CNLiveBeeHive-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8eb19d8bc2256b7e726f7d728ddfaed39d--TestTargetTaskProducer>","<target-CNLiveBeeHive-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8eb19d8bc2256b7e726f7d728ddfaed39d--begin-compiling>"],"outputs":["<target-CNLiveBeeHive-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8eb19d8bc2256b7e726f7d728ddfaed39d--ProductPostprocessingTaskProducer>"]}
"Gate target-CNLiveBeeHive-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8eb19d8bc2256b7e726f7d728ddfaed39d--ProductStructureTaskProducer": {"tool":"phony","inputs":["<target-CNLiveBeeHive-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8eb19d8bc2256b7e726f7d728ddfaed39d--start>","<target-CNLiveBeeHive-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8eb19d8bc2256b7e726f7d728ddfaed39d--begin-compiling>","<MkDir /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive/CNLiveBeeHive.bundle>"],"outputs":["<target-CNLiveBeeHive-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8eb19d8bc2256b7e726f7d728ddfaed39d--ProductStructureTaskProducer>"]}
"Gate target-CNLiveBeeHive-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8eb19d8bc2256b7e726f7d728ddfaed39d--SanitizerTaskProducer": {"tool":"phony","inputs":["<target-CNLiveBeeHive-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8eb19d8bc2256b7e726f7d728ddfaed39d--HeadermapTaskProducer>","<target-CNLiveBeeHive-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8eb19d8bc2256b7e726f7d728ddfaed39d--begin-compiling>"],"outputs":["<target-CNLiveBeeHive-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8eb19d8bc2256b7e726f7d728ddfaed39d--SanitizerTaskProducer>"]}
"Gate target-CNLiveBeeHive-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8eb19d8bc2256b7e726f7d728ddfaed39d--StubBinaryTaskProducer": {"tool":"phony","inputs":["<target-CNLiveBeeHive-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8eb19d8bc2256b7e726f7d728ddfaed39d--HeadermapTaskProducer>","<target-CNLiveBeeHive-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8eb19d8bc2256b7e726f7d728ddfaed39d--begin-compiling>"],"outputs":["<target-CNLiveBeeHive-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8eb19d8bc2256b7e726f7d728ddfaed39d--StubBinaryTaskProducer>"]}
"Gate target-CNLiveBeeHive-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8eb19d8bc2256b7e726f7d728ddfaed39d--SwiftStandardLibrariesTaskProducer": {"tool":"phony","inputs":["<target-CNLiveBeeHive-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8eb19d8bc2256b7e726f7d728ddfaed39d--HeadermapTaskProducer>","<target-CNLiveBeeHive-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8eb19d8bc2256b7e726f7d728ddfaed39d--phase2-copy-bundle-resources>","<target-CNLiveBeeHive-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8eb19d8bc2256b7e726f7d728ddfaed39d--begin-compiling>"],"outputs":["<target-CNLiveBeeHive-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8eb19d8bc2256b7e726f7d728ddfaed39d--SwiftStandardLibrariesTaskProducer>"]}
"Gate target-CNLiveBeeHive-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8eb19d8bc2256b7e726f7d728ddfaed39d--TestTargetPostprocessingTaskProducer": {"tool":"phony","inputs":["<target-CNLiveBeeHive-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8eb19d8bc2256b7e726f7d728ddfaed39d--ProductPostprocessingTaskProducer>","<target-CNLiveBeeHive-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8eb19d8bc2256b7e726f7d728ddfaed39d--begin-compiling>"],"outputs":["<target-CNLiveBeeHive-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8eb19d8bc2256b7e726f7d728ddfaed39d--TestTargetPostprocessingTaskProducer>"]}
"Gate target-CNLiveBeeHive-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8eb19d8bc2256b7e726f7d728ddfaed39d--TestTargetTaskProducer": {"tool":"phony","inputs":["<target-CNLiveBeeHive-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8eb19d8bc2256b7e726f7d728ddfaed39d--HeadermapTaskProducer>","<target-CNLiveBeeHive-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8eb19d8bc2256b7e726f7d728ddfaed39d--begin-compiling>"],"outputs":["<target-CNLiveBeeHive-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8eb19d8bc2256b7e726f7d728ddfaed39d--TestTargetTaskProducer>"]}
"Gate target-CNLiveBeeHive-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8eb19d8bc2256b7e726f7d728ddfaed39d--VersionPlistTaskProducer": {"tool":"phony","inputs":["<target-CNLiveBeeHive-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8eb19d8bc2256b7e726f7d728ddfaed39d--HeadermapTaskProducer>","<target-CNLiveBeeHive-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8eb19d8bc2256b7e726f7d728ddfaed39d--begin-compiling>"],"outputs":["<target-CNLiveBeeHive-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8eb19d8bc2256b7e726f7d728ddfaed39d--VersionPlistTaskProducer>"]}
"Gate target-CNLiveBeeHive-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8eb19d8bc2256b7e726f7d728ddfaed39d--XCFrameworkTaskProducer": {"tool":"phony","inputs":["<target-CNLiveBeeHive-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8eb19d8bc2256b7e726f7d728ddfaed39d--ProductStructureTaskProducer>","<target-CNLiveBeeHive-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8eb19d8bc2256b7e726f7d728ddfaed39d--begin-compiling>"],"outputs":["<target-CNLiveBeeHive-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8eb19d8bc2256b7e726f7d728ddfaed39d--XCFrameworkTaskProducer>"]}
"Gate target-CNLiveBeeHive-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8eb19d8bc2256b7e726f7d728ddfaed39d--begin-compiling": {"tool":"phony","inputs":["<target-CNLiveBeeHive-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8eb19d8bc2256b7e726f7d728ddfaed39d-Debug-iphoneos-stale-file-removal>","<CreateBuildDirectory-/tmp/Pods.dst>","<CreateBuildDirectory-/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build>","<CreateBuildDirectory-/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build>"],"outputs":["<target-CNLiveBeeHive-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8eb19d8bc2256b7e726f7d728ddfaed39d--begin-compiling>"]}
"Gate target-CNLiveBeeHive-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8eb19d8bc2256b7e726f7d728ddfaed39d--end": {"tool":"phony","inputs":["<target-CNLiveBeeHive-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8eb19d8bc2256b7e726f7d728ddfaed39d--entry>","<target-CNLiveBeeHive-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8eb19d8bc2256b7e726f7d728ddfaed39d--Barrier-ChangeAlternatePermissions>","<target-CNLiveBeeHive-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8eb19d8bc2256b7e726f7d728ddfaed39d--Barrier-ChangePermissions>","<target-CNLiveBeeHive-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8eb19d8bc2256b7e726f7d728ddfaed39d--Barrier-CodeSign>","<target-CNLiveBeeHive-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8eb19d8bc2256b7e726f7d728ddfaed39d--Barrier-CopyAside>","<target-CNLiveBeeHive-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8eb19d8bc2256b7e726f7d728ddfaed39d--Barrier-RegisterExecutionPolicyException>","<target-CNLiveBeeHive-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8eb19d8bc2256b7e726f7d728ddfaed39d--Barrier-StripSymbols>","<target-CNLiveBeeHive-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8eb19d8bc2256b7e726f7d728ddfaed39d--Barrier-Validate>","<target-CNLiveBeeHive-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8eb19d8bc2256b7e726f7d728ddfaed39d--GeneratedFilesTaskProducer>","<target-CNLiveBeeHive-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8eb19d8bc2256b7e726f7d728ddfaed39d--HeadermapTaskProducer>","<target-CNLiveBeeHive-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8eb19d8bc2256b7e726f7d728ddfaed39d--InfoPlistTaskProducer>","<target-CNLiveBeeHive-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8eb19d8bc2256b7e726f7d728ddfaed39d--ModuleMapTaskProducer>","<target-CNLiveBeeHive-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8eb19d8bc2256b7e726f7d728ddfaed39d--ProductPostprocessingTaskProducer>","<target-CNLiveBeeHive-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8eb19d8bc2256b7e726f7d728ddfaed39d--ProductStructureTaskProducer>","<target-CNLiveBeeHive-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8eb19d8bc2256b7e726f7d728ddfaed39d--SanitizerTaskProducer>","<target-CNLiveBeeHive-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8eb19d8bc2256b7e726f7d728ddfaed39d--StubBinaryTaskProducer>","<target-CNLiveBeeHive-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8eb19d8bc2256b7e726f7d728ddfaed39d--SwiftStandardLibrariesTaskProducer>","<target-CNLiveBeeHive-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8eb19d8bc2256b7e726f7d728ddfaed39d--TestTargetPostprocessingTaskProducer>","<target-CNLiveBeeHive-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8eb19d8bc2256b7e726f7d728ddfaed39d--TestTargetTaskProducer>","<target-CNLiveBeeHive-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8eb19d8bc2256b7e726f7d728ddfaed39d--VersionPlistTaskProducer>","<target-CNLiveBeeHive-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8eb19d8bc2256b7e726f7d728ddfaed39d--XCFrameworkTaskProducer>","<target-CNLiveBeeHive-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8eb19d8bc2256b7e726f7d728ddfaed39d--generated-headers>","<target-CNLiveBeeHive-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8eb19d8bc2256b7e726f7d728ddfaed39d--phase0-compile-sources>","<target-CNLiveBeeHive-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8eb19d8bc2256b7e726f7d728ddfaed39d--phase2-copy-bundle-resources>","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive/CNLiveBeeHive.bundle/BeeHive.bundle","<MkDir /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive/CNLiveBeeHive.bundle>","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive/CNLiveBeeHive.bundle/Info.plist","<Touch /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive/CNLiveBeeHive.bundle>","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive-CNLiveBeeHive.build/CNLiveBeeHive-all-non-framework-target-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive-CNLiveBeeHive.build/CNLiveBeeHive-all-target-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive-CNLiveBeeHive.build/CNLiveBeeHive-generated-files.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive-CNLiveBeeHive.build/CNLiveBeeHive-own-target-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive-CNLiveBeeHive.build/CNLiveBeeHive-project-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive-CNLiveBeeHive.build/CNLiveBeeHive.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive-CNLiveBeeHive.build/all-product-headers.yaml"],"outputs":["<target-CNLiveBeeHive-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8eb19d8bc2256b7e726f7d728ddfaed39d--end>"]}
"Gate target-CNLiveBeeHive-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8eb19d8bc2256b7e726f7d728ddfaed39d--entry": {"tool":"phony","inputs":["<target-CNLiveBeeHive-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8eb19d8bc2256b7e726f7d728ddfaed39d-Debug-iphoneos-stale-file-removal>","<CreateBuildDirectory-/tmp/Pods.dst>","<CreateBuildDirectory-/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build>","<CreateBuildDirectory-/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build>","<target-CNLiveBeeHive-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8eb19d8bc2256b7e726f7d728ddfaed39d--begin-compiling>"],"outputs":["<target-CNLiveBeeHive-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8eb19d8bc2256b7e726f7d728ddfaed39d--entry>"]}
"Gate target-CNLiveBeeHive-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8eb19d8bc2256b7e726f7d728ddfaed39d--generated-headers": {"tool":"phony","inputs":["<target-CNLiveBeeHive-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8eb19d8bc2256b7e726f7d728ddfaed39d--begin-compiling>"],"outputs":["<target-CNLiveBeeHive-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8eb19d8bc2256b7e726f7d728ddfaed39d--generated-headers>"]}
"Gate target-CNLiveBeeHive-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8eb19d8bc2256b7e726f7d728ddfaed39d--immediate": {"tool":"phony","inputs":["<target-CNLiveBeeHive-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8eb19d8bc2256b7e726f7d728ddfaed39d-Debug-iphoneos-stale-file-removal>","<CreateBuildDirectory-/tmp/Pods.dst>","<CreateBuildDirectory-/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build>","<CreateBuildDirectory-/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build>"],"outputs":["<target-CNLiveBeeHive-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8eb19d8bc2256b7e726f7d728ddfaed39d--immediate>"]}
"Gate target-CNLiveBeeHive-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8eb19d8bc2256b7e726f7d728ddfaed39d--modules-ready": {"tool":"phony","inputs":["<target-CNLiveBeeHive-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8eb19d8bc2256b7e726f7d728ddfaed39d--begin-compiling>"],"outputs":["<target-CNLiveBeeHive-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8eb19d8bc2256b7e726f7d728ddfaed39d--modules-ready>"]}
"Gate target-CNLiveBeeHive-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8eb19d8bc2256b7e726f7d728ddfaed39d--phase0-compile-sources": {"tool":"phony","inputs":["<target-CNLiveBeeHive-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8eb19d8bc2256b7e726f7d728ddfaed39d--HeadermapTaskProducer>","<target-CNLiveBeeHive-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8eb19d8bc2256b7e726f7d728ddfaed39d--begin-compiling>"],"outputs":["<target-CNLiveBeeHive-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8eb19d8bc2256b7e726f7d728ddfaed39d--phase0-compile-sources>"]}
"Gate target-CNLiveBeeHive-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8eb19d8bc2256b7e726f7d728ddfaed39d--phase2-copy-bundle-resources": {"tool":"phony","inputs":["<target-CNLiveBeeHive-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8eb19d8bc2256b7e726f7d728ddfaed39d--phase0-compile-sources>","<target-CNLiveBeeHive-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8eb19d8bc2256b7e726f7d728ddfaed39d--begin-compiling>","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive/CNLiveBeeHive.bundle/BeeHive.bundle"],"outputs":["<target-CNLiveBeeHive-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8eb19d8bc2256b7e726f7d728ddfaed39d--phase2-copy-bundle-resources>"]}
"Gate target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9--Barrier-ChangeAlternatePermissions": {"tool":"phony","inputs":["<target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9--Barrier-ChangePermissions>","<target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9--begin-compiling>"],"outputs":["<target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9--Barrier-ChangeAlternatePermissions>"]}
"Gate target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9--Barrier-ChangePermissions": {"tool":"phony","inputs":["<target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9--Barrier-StripSymbols>","<target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9--begin-compiling>"],"outputs":["<target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9--Barrier-ChangePermissions>"]}
"Gate target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9--Barrier-CodeSign": {"tool":"phony","inputs":["<target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9--Barrier-ChangeAlternatePermissions>","<target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9--begin-compiling>"],"outputs":["<target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9--Barrier-CodeSign>"]}
"Gate target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9--Barrier-CopyAside": {"tool":"phony","inputs":["<target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9--ProductPostprocessingTaskProducer>","<target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9--begin-compiling>"],"outputs":["<target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9--Barrier-CopyAside>"]}
"Gate target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9--Barrier-RegisterExecutionPolicyException": {"tool":"phony","inputs":["<target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9--Barrier-CodeSign>","<target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9--begin-compiling>"],"outputs":["<target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9--Barrier-RegisterExecutionPolicyException>"]}
"Gate target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9--Barrier-StripSymbols": {"tool":"phony","inputs":["<target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9--Barrier-CopyAside>","<target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9--begin-compiling>"],"outputs":["<target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9--Barrier-StripSymbols>"]}
"Gate target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9--Barrier-Validate": {"tool":"phony","inputs":["<target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9--Barrier-RegisterExecutionPolicyException>","<target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9--begin-compiling>","<Touch /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveCommonClass/CNLiveCommonClass.framework>"],"outputs":["<target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9--Barrier-Validate>"]}
"Gate target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9--GeneratedFilesTaskProducer": {"tool":"phony","inputs":["<target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9--XCFrameworkTaskProducer>","<target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9--begin-compiling>"],"outputs":["<target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9--GeneratedFilesTaskProducer>"]}
"Gate target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9--HeadermapTaskProducer": {"tool":"phony","inputs":["<target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9--GeneratedFilesTaskProducer>","<target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9--begin-compiling>","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/CNLiveCommonClass-all-non-framework-target-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/CNLiveCommonClass-all-target-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/CNLiveCommonClass-generated-files.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/CNLiveCommonClass-own-target-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/CNLiveCommonClass-project-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/CNLiveCommonClass.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/all-product-headers.yaml"],"outputs":["<target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9--HeadermapTaskProducer>"]}
"Gate target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9--InfoPlistTaskProducer": {"tool":"phony","inputs":["<target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9--HeadermapTaskProducer>","<target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9--begin-compiling>","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveCommonClass/CNLiveCommonClass.framework/Info.plist"],"outputs":["<target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9--InfoPlistTaskProducer>"]}
"Gate target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9--ModuleMapTaskProducer": {"tool":"phony","inputs":["<target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9--HeadermapTaskProducer>","<target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9--begin-compiling>","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveCommonClass/CNLiveCommonClass.framework/Modules/module.modulemap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/module.modulemap"],"outputs":["<target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9--ModuleMapTaskProducer>"]}
"Gate target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9--ProductPostprocessingTaskProducer": {"tool":"phony","inputs":["<target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9--HeadermapTaskProducer>","<target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9--phase3-copy-bundle-resources>","<target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9--InfoPlistTaskProducer>","<target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9--VersionPlistTaskProducer>","<target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9--SanitizerTaskProducer>","<target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9--ModuleMapTaskProducer>","<target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9--SwiftStandardLibrariesTaskProducer>","<target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9--StubBinaryTaskProducer>","<target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9--TestTargetTaskProducer>","<target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9--begin-compiling>"],"outputs":["<target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9--ProductPostprocessingTaskProducer>"]}
"Gate target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9--ProductStructureTaskProducer": {"tool":"phony","inputs":["<target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9--start>","<target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9--begin-compiling>","<MkDir /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveCommonClass/CNLiveCommonClass.framework>","<MkDir /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveCommonClass/CNLiveCommonClass.framework/Headers>"],"outputs":["<target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9--ProductStructureTaskProducer>"]}
"Gate target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9--SanitizerTaskProducer": {"tool":"phony","inputs":["<target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9--HeadermapTaskProducer>","<target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9--begin-compiling>"],"outputs":["<target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9--SanitizerTaskProducer>"]}
"Gate target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9--StubBinaryTaskProducer": {"tool":"phony","inputs":["<target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9--HeadermapTaskProducer>","<target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9--begin-compiling>"],"outputs":["<target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9--StubBinaryTaskProducer>"]}
"Gate target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9--SwiftStandardLibrariesTaskProducer": {"tool":"phony","inputs":["<target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9--HeadermapTaskProducer>","<target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9--phase3-copy-bundle-resources>","<target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9--begin-compiling>"],"outputs":["<target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9--SwiftStandardLibrariesTaskProducer>"]}
"Gate target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9--TestTargetPostprocessingTaskProducer": {"tool":"phony","inputs":["<target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9--ProductPostprocessingTaskProducer>","<target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9--begin-compiling>"],"outputs":["<target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9--TestTargetPostprocessingTaskProducer>"]}
"Gate target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9--TestTargetTaskProducer": {"tool":"phony","inputs":["<target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9--HeadermapTaskProducer>","<target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9--begin-compiling>"],"outputs":["<target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9--TestTargetTaskProducer>"]}
"Gate target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9--VersionPlistTaskProducer": {"tool":"phony","inputs":["<target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9--HeadermapTaskProducer>","<target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9--begin-compiling>"],"outputs":["<target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9--VersionPlistTaskProducer>"]}
"Gate target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9--XCFrameworkTaskProducer": {"tool":"phony","inputs":["<target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9--ProductStructureTaskProducer>","<target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9--begin-compiling>"],"outputs":["<target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9--XCFrameworkTaskProducer>"]}
"Gate target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9--begin-compiling": {"tool":"phony","inputs":["<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--modules-ready>","<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--modules-ready>","<target-CNLiveTripartiteManagement-285b96a559574e49fe0e1a40c03a5a8ec69cdcecdf4ee3a594726fb547f0e760--modules-ready>","<target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9-Debug-iphoneos-stale-file-removal>","<CreateBuildDirectory-/tmp/Pods.dst>","<CreateBuildDirectory-/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build>","<CreateBuildDirectory-/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build>"],"outputs":["<target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9--begin-compiling>"]}
"Gate target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9--end": {"tool":"phony","inputs":["<target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9--entry>","<target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9--Barrier-ChangeAlternatePermissions>","<target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9--Barrier-ChangePermissions>","<target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9--Barrier-CodeSign>","<target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9--Barrier-CopyAside>","<target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9--Barrier-RegisterExecutionPolicyException>","<target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9--Barrier-StripSymbols>","<target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9--Barrier-Validate>","<target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9--GeneratedFilesTaskProducer>","<target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9--HeadermapTaskProducer>","<target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9--InfoPlistTaskProducer>","<target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9--ModuleMapTaskProducer>","<target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9--ProductPostprocessingTaskProducer>","<target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9--ProductStructureTaskProducer>","<target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9--SanitizerTaskProducer>","<target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9--StubBinaryTaskProducer>","<target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9--SwiftStandardLibrariesTaskProducer>","<target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9--TestTargetPostprocessingTaskProducer>","<target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9--TestTargetTaskProducer>","<target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9--VersionPlistTaskProducer>","<target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9--XCFrameworkTaskProducer>","<target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9--generated-headers>","<target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9--phase0-copy-headers>","<target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9--phase1-compile-sources>","<target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9--phase3-copy-bundle-resources>","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/Objects-normal/arm64/CNCommonListViewController.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/Objects-normal/arm64/CNCommonTableViewController.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/Objects-normal/arm64/CNCommonView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/Objects-normal/arm64/CNCommonViewController.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/Objects-normal/arm64/CNLiveCommonClass-dummy.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/Objects-normal/arm64/CNLiveCommonClass_vers.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/Objects-normal/arm64/CNThemeManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/Objects-normal/armv7/CNCommonListViewController.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/Objects-normal/armv7/CNCommonTableViewController.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/Objects-normal/armv7/CNCommonView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/Objects-normal/armv7/CNCommonViewController.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/Objects-normal/armv7/CNLiveCommonClass-dummy.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/Objects-normal/armv7/CNLiveCommonClass_vers.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/Objects-normal/armv7/CNThemeManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveCommonClass/CNLiveCommonClass.framework/Headers/CNCommonListViewController.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveCommonClass/CNLiveCommonClass.framework/Headers/CNCommonTableViewController.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveCommonClass/CNLiveCommonClass.framework/Headers/CNCommonView.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveCommonClass/CNLiveCommonClass.framework/Headers/CNCommonViewController.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveCommonClass/CNLiveCommonClass.framework/Headers/CNLiveCommonClass.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveCommonClass/CNLiveCommonClass.framework/Headers/CNThemeManager.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveCommonClass/CNLiveCommonClass.framework/Headers/CNThemeProtocol.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveCommonClass/CNLiveCommonClass.framework/Headers/CNLiveCommonClass-umbrella.h","<Linked Binary /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveCommonClass/CNLiveCommonClass.framework/CNLiveCommonClass>","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveCommonClass/CNLiveCommonClass.framework/Modules/module.modulemap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/Objects-normal/arm64/Binary/CNLiveCommonClass","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/Objects-normal/armv7/Binary/CNLiveCommonClass","<MkDir /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveCommonClass/CNLiveCommonClass.framework>","<MkDir /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveCommonClass/CNLiveCommonClass.framework/Headers>","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveCommonClass/CNLiveCommonClass.framework/Info.plist","<Touch /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveCommonClass/CNLiveCommonClass.framework>","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/CNLiveCommonClass-all-non-framework-target-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/CNLiveCommonClass-all-target-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/CNLiveCommonClass-generated-files.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/CNLiveCommonClass-own-target-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/CNLiveCommonClass-project-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/CNLiveCommonClass.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/DerivedSources/CNLiveCommonClass_vers.c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/Objects-normal/arm64/CNLiveCommonClass.LinkFileList","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/Objects-normal/armv7/CNLiveCommonClass.LinkFileList","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/all-product-headers.yaml","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/module.modulemap"],"outputs":["<target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9--end>"]}
"Gate target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9--entry": {"tool":"phony","inputs":["<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--end>","<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--end>","<target-CNLiveTripartiteManagement-285b96a559574e49fe0e1a40c03a5a8ec69cdcecdf4ee3a594726fb547f0e760--end>","<target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9-Debug-iphoneos-stale-file-removal>","<CreateBuildDirectory-/tmp/Pods.dst>","<CreateBuildDirectory-/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build>","<CreateBuildDirectory-/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build>","<target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9--begin-compiling>"],"outputs":["<target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9--entry>"]}
"Gate target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9--generated-headers": {"tool":"phony","inputs":["<target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9--begin-compiling>"],"outputs":["<target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9--generated-headers>"]}
"Gate target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9--immediate": {"tool":"phony","inputs":["<target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9-Debug-iphoneos-stale-file-removal>","<CreateBuildDirectory-/tmp/Pods.dst>","<CreateBuildDirectory-/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build>","<CreateBuildDirectory-/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build>"],"outputs":["<target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9--immediate>"]}
"Gate target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9--modules-ready": {"tool":"phony","inputs":["<target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9--begin-compiling>","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/Objects-normal/arm64/CNCommonListViewController.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/Objects-normal/arm64/CNCommonTableViewController.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/Objects-normal/arm64/CNCommonView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/Objects-normal/arm64/CNCommonViewController.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/Objects-normal/arm64/CNLiveCommonClass-dummy.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/Objects-normal/arm64/CNLiveCommonClass_vers.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/Objects-normal/arm64/CNThemeManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/Objects-normal/armv7/CNCommonListViewController.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/Objects-normal/armv7/CNCommonTableViewController.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/Objects-normal/armv7/CNCommonView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/Objects-normal/armv7/CNCommonViewController.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/Objects-normal/armv7/CNLiveCommonClass-dummy.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/Objects-normal/armv7/CNLiveCommonClass_vers.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/Objects-normal/armv7/CNThemeManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveCommonClass/CNLiveCommonClass.framework/Headers/CNCommonListViewController.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveCommonClass/CNLiveCommonClass.framework/Headers/CNCommonTableViewController.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveCommonClass/CNLiveCommonClass.framework/Headers/CNCommonView.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveCommonClass/CNLiveCommonClass.framework/Headers/CNCommonViewController.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveCommonClass/CNLiveCommonClass.framework/Headers/CNLiveCommonClass.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveCommonClass/CNLiveCommonClass.framework/Headers/CNThemeManager.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveCommonClass/CNLiveCommonClass.framework/Headers/CNThemeProtocol.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveCommonClass/CNLiveCommonClass.framework/Headers/CNLiveCommonClass-umbrella.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/DerivedSources/CNLiveCommonClass_vers.c"],"outputs":["<target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9--modules-ready>"]}
"Gate target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9--phase0-copy-headers": {"tool":"phony","inputs":["<target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9--HeadermapTaskProducer>","<target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9--begin-compiling>","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveCommonClass/CNLiveCommonClass.framework/Headers/CNCommonListViewController.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveCommonClass/CNLiveCommonClass.framework/Headers/CNCommonTableViewController.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveCommonClass/CNLiveCommonClass.framework/Headers/CNCommonView.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveCommonClass/CNLiveCommonClass.framework/Headers/CNCommonViewController.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveCommonClass/CNLiveCommonClass.framework/Headers/CNLiveCommonClass.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveCommonClass/CNLiveCommonClass.framework/Headers/CNThemeManager.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveCommonClass/CNLiveCommonClass.framework/Headers/CNThemeProtocol.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveCommonClass/CNLiveCommonClass.framework/Headers/CNLiveCommonClass-umbrella.h"],"outputs":["<target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9--phase0-copy-headers>"]}
"Gate target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9--phase1-compile-sources": {"tool":"phony","inputs":["<target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9--phase0-copy-headers>","<target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9--begin-compiling>","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/Objects-normal/arm64/CNCommonListViewController.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/Objects-normal/arm64/CNCommonTableViewController.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/Objects-normal/arm64/CNCommonView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/Objects-normal/arm64/CNCommonViewController.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/Objects-normal/arm64/CNLiveCommonClass-dummy.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/Objects-normal/arm64/CNLiveCommonClass_vers.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/Objects-normal/arm64/CNThemeManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/Objects-normal/armv7/CNCommonListViewController.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/Objects-normal/armv7/CNCommonTableViewController.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/Objects-normal/armv7/CNCommonView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/Objects-normal/armv7/CNCommonViewController.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/Objects-normal/armv7/CNLiveCommonClass-dummy.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/Objects-normal/armv7/CNLiveCommonClass_vers.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/Objects-normal/armv7/CNThemeManager.o","<Linked Binary /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveCommonClass/CNLiveCommonClass.framework/CNLiveCommonClass>","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/Objects-normal/arm64/Binary/CNLiveCommonClass","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/Objects-normal/armv7/Binary/CNLiveCommonClass","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/DerivedSources/CNLiveCommonClass_vers.c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/Objects-normal/arm64/CNLiveCommonClass.LinkFileList","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/Objects-normal/armv7/CNLiveCommonClass.LinkFileList"],"outputs":["<target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9--phase1-compile-sources>"]}
"Gate target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9--phase3-copy-bundle-resources": {"tool":"phony","inputs":["<target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9--phase1-compile-sources>","<target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9--begin-compiling>"],"outputs":["<target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9--phase3-copy-bundle-resources>"]}
"Gate target-CNLiveEnvironment-285b96a559574e49fe0e1a40c03a5a8e61e9c7c4a29ad91844f8d551bbfe0deb--Barrier-ChangeAlternatePermissions": {"tool":"phony","inputs":["<target-CNLiveEnvironment-285b96a559574e49fe0e1a40c03a5a8e61e9c7c4a29ad91844f8d551bbfe0deb--Barrier-ChangePermissions>","<target-CNLiveEnvironment-285b96a559574e49fe0e1a40c03a5a8e61e9c7c4a29ad91844f8d551bbfe0deb--begin-compiling>"],"outputs":["<target-CNLiveEnvironment-285b96a559574e49fe0e1a40c03a5a8e61e9c7c4a29ad91844f8d551bbfe0deb--Barrier-ChangeAlternatePermissions>"]}
"Gate target-CNLiveEnvironment-285b96a559574e49fe0e1a40c03a5a8e61e9c7c4a29ad91844f8d551bbfe0deb--Barrier-ChangePermissions": {"tool":"phony","inputs":["<target-CNLiveEnvironment-285b96a559574e49fe0e1a40c03a5a8e61e9c7c4a29ad91844f8d551bbfe0deb--Barrier-StripSymbols>","<target-CNLiveEnvironment-285b96a559574e49fe0e1a40c03a5a8e61e9c7c4a29ad91844f8d551bbfe0deb--begin-compiling>"],"outputs":["<target-CNLiveEnvironment-285b96a559574e49fe0e1a40c03a5a8e61e9c7c4a29ad91844f8d551bbfe0deb--Barrier-ChangePermissions>"]}
"Gate target-CNLiveEnvironment-285b96a559574e49fe0e1a40c03a5a8e61e9c7c4a29ad91844f8d551bbfe0deb--Barrier-CodeSign": {"tool":"phony","inputs":["<target-CNLiveEnvironment-285b96a559574e49fe0e1a40c03a5a8e61e9c7c4a29ad91844f8d551bbfe0deb--Barrier-ChangeAlternatePermissions>","<target-CNLiveEnvironment-285b96a559574e49fe0e1a40c03a5a8e61e9c7c4a29ad91844f8d551bbfe0deb--begin-compiling>"],"outputs":["<target-CNLiveEnvironment-285b96a559574e49fe0e1a40c03a5a8e61e9c7c4a29ad91844f8d551bbfe0deb--Barrier-CodeSign>"]}
"Gate target-CNLiveEnvironment-285b96a559574e49fe0e1a40c03a5a8e61e9c7c4a29ad91844f8d551bbfe0deb--Barrier-CopyAside": {"tool":"phony","inputs":["<target-CNLiveEnvironment-285b96a559574e49fe0e1a40c03a5a8e61e9c7c4a29ad91844f8d551bbfe0deb--ProductPostprocessingTaskProducer>","<target-CNLiveEnvironment-285b96a559574e49fe0e1a40c03a5a8e61e9c7c4a29ad91844f8d551bbfe0deb--begin-compiling>"],"outputs":["<target-CNLiveEnvironment-285b96a559574e49fe0e1a40c03a5a8e61e9c7c4a29ad91844f8d551bbfe0deb--Barrier-CopyAside>"]}
"Gate target-CNLiveEnvironment-285b96a559574e49fe0e1a40c03a5a8e61e9c7c4a29ad91844f8d551bbfe0deb--Barrier-RegisterExecutionPolicyException": {"tool":"phony","inputs":["<target-CNLiveEnvironment-285b96a559574e49fe0e1a40c03a5a8e61e9c7c4a29ad91844f8d551bbfe0deb--Barrier-CodeSign>","<target-CNLiveEnvironment-285b96a559574e49fe0e1a40c03a5a8e61e9c7c4a29ad91844f8d551bbfe0deb--begin-compiling>"],"outputs":["<target-CNLiveEnvironment-285b96a559574e49fe0e1a40c03a5a8e61e9c7c4a29ad91844f8d551bbfe0deb--Barrier-RegisterExecutionPolicyException>"]}
"Gate target-CNLiveEnvironment-285b96a559574e49fe0e1a40c03a5a8e61e9c7c4a29ad91844f8d551bbfe0deb--Barrier-StripSymbols": {"tool":"phony","inputs":["<target-CNLiveEnvironment-285b96a559574e49fe0e1a40c03a5a8e61e9c7c4a29ad91844f8d551bbfe0deb--Barrier-CopyAside>","<target-CNLiveEnvironment-285b96a559574e49fe0e1a40c03a5a8e61e9c7c4a29ad91844f8d551bbfe0deb--begin-compiling>"],"outputs":["<target-CNLiveEnvironment-285b96a559574e49fe0e1a40c03a5a8e61e9c7c4a29ad91844f8d551bbfe0deb--Barrier-StripSymbols>"]}
"Gate target-CNLiveEnvironment-285b96a559574e49fe0e1a40c03a5a8e61e9c7c4a29ad91844f8d551bbfe0deb--Barrier-Validate": {"tool":"phony","inputs":["<target-CNLiveEnvironment-285b96a559574e49fe0e1a40c03a5a8e61e9c7c4a29ad91844f8d551bbfe0deb--Barrier-RegisterExecutionPolicyException>","<target-CNLiveEnvironment-285b96a559574e49fe0e1a40c03a5a8e61e9c7c4a29ad91844f8d551bbfe0deb--begin-compiling>","<Touch /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveEnvironment/CNLiveEnvironment.framework>"],"outputs":["<target-CNLiveEnvironment-285b96a559574e49fe0e1a40c03a5a8e61e9c7c4a29ad91844f8d551bbfe0deb--Barrier-Validate>"]}
"Gate target-CNLiveEnvironment-285b96a559574e49fe0e1a40c03a5a8e61e9c7c4a29ad91844f8d551bbfe0deb--GeneratedFilesTaskProducer": {"tool":"phony","inputs":["<target-CNLiveEnvironment-285b96a559574e49fe0e1a40c03a5a8e61e9c7c4a29ad91844f8d551bbfe0deb--XCFrameworkTaskProducer>","<target-CNLiveEnvironment-285b96a559574e49fe0e1a40c03a5a8e61e9c7c4a29ad91844f8d551bbfe0deb--begin-compiling>"],"outputs":["<target-CNLiveEnvironment-285b96a559574e49fe0e1a40c03a5a8e61e9c7c4a29ad91844f8d551bbfe0deb--GeneratedFilesTaskProducer>"]}
"Gate target-CNLiveEnvironment-285b96a559574e49fe0e1a40c03a5a8e61e9c7c4a29ad91844f8d551bbfe0deb--HeadermapTaskProducer": {"tool":"phony","inputs":["<target-CNLiveEnvironment-285b96a559574e49fe0e1a40c03a5a8e61e9c7c4a29ad91844f8d551bbfe0deb--GeneratedFilesTaskProducer>","<target-CNLiveEnvironment-285b96a559574e49fe0e1a40c03a5a8e61e9c7c4a29ad91844f8d551bbfe0deb--begin-compiling>","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveEnvironment.build/CNLiveEnvironment-all-non-framework-target-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveEnvironment.build/CNLiveEnvironment-all-target-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveEnvironment.build/CNLiveEnvironment-generated-files.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveEnvironment.build/CNLiveEnvironment-own-target-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveEnvironment.build/CNLiveEnvironment-project-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveEnvironment.build/CNLiveEnvironment.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveEnvironment.build/all-product-headers.yaml"],"outputs":["<target-CNLiveEnvironment-285b96a559574e49fe0e1a40c03a5a8e61e9c7c4a29ad91844f8d551bbfe0deb--HeadermapTaskProducer>"]}
"Gate target-CNLiveEnvironment-285b96a559574e49fe0e1a40c03a5a8e61e9c7c4a29ad91844f8d551bbfe0deb--InfoPlistTaskProducer": {"tool":"phony","inputs":["<target-CNLiveEnvironment-285b96a559574e49fe0e1a40c03a5a8e61e9c7c4a29ad91844f8d551bbfe0deb--HeadermapTaskProducer>","<target-CNLiveEnvironment-285b96a559574e49fe0e1a40c03a5a8e61e9c7c4a29ad91844f8d551bbfe0deb--begin-compiling>","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveEnvironment/CNLiveEnvironment.framework/Info.plist"],"outputs":["<target-CNLiveEnvironment-285b96a559574e49fe0e1a40c03a5a8e61e9c7c4a29ad91844f8d551bbfe0deb--InfoPlistTaskProducer>"]}
"Gate target-CNLiveEnvironment-285b96a559574e49fe0e1a40c03a5a8e61e9c7c4a29ad91844f8d551bbfe0deb--ModuleMapTaskProducer": {"tool":"phony","inputs":["<target-CNLiveEnvironment-285b96a559574e49fe0e1a40c03a5a8e61e9c7c4a29ad91844f8d551bbfe0deb--HeadermapTaskProducer>","<target-CNLiveEnvironment-285b96a559574e49fe0e1a40c03a5a8e61e9c7c4a29ad91844f8d551bbfe0deb--begin-compiling>","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveEnvironment/CNLiveEnvironment.framework/Modules/module.modulemap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveEnvironment.build/module.modulemap"],"outputs":["<target-CNLiveEnvironment-285b96a559574e49fe0e1a40c03a5a8e61e9c7c4a29ad91844f8d551bbfe0deb--ModuleMapTaskProducer>"]}
"Gate target-CNLiveEnvironment-285b96a559574e49fe0e1a40c03a5a8e61e9c7c4a29ad91844f8d551bbfe0deb--ProductPostprocessingTaskProducer": {"tool":"phony","inputs":["<target-CNLiveEnvironment-285b96a559574e49fe0e1a40c03a5a8e61e9c7c4a29ad91844f8d551bbfe0deb--HeadermapTaskProducer>","<target-CNLiveEnvironment-285b96a559574e49fe0e1a40c03a5a8e61e9c7c4a29ad91844f8d551bbfe0deb--phase3-copy-bundle-resources>","<target-CNLiveEnvironment-285b96a559574e49fe0e1a40c03a5a8e61e9c7c4a29ad91844f8d551bbfe0deb--InfoPlistTaskProducer>","<target-CNLiveEnvironment-285b96a559574e49fe0e1a40c03a5a8e61e9c7c4a29ad91844f8d551bbfe0deb--VersionPlistTaskProducer>","<target-CNLiveEnvironment-285b96a559574e49fe0e1a40c03a5a8e61e9c7c4a29ad91844f8d551bbfe0deb--SanitizerTaskProducer>","<target-CNLiveEnvironment-285b96a559574e49fe0e1a40c03a5a8e61e9c7c4a29ad91844f8d551bbfe0deb--ModuleMapTaskProducer>","<target-CNLiveEnvironment-285b96a559574e49fe0e1a40c03a5a8e61e9c7c4a29ad91844f8d551bbfe0deb--SwiftStandardLibrariesTaskProducer>","<target-CNLiveEnvironment-285b96a559574e49fe0e1a40c03a5a8e61e9c7c4a29ad91844f8d551bbfe0deb--StubBinaryTaskProducer>","<target-CNLiveEnvironment-285b96a559574e49fe0e1a40c03a5a8e61e9c7c4a29ad91844f8d551bbfe0deb--TestTargetTaskProducer>","<target-CNLiveEnvironment-285b96a559574e49fe0e1a40c03a5a8e61e9c7c4a29ad91844f8d551bbfe0deb--begin-compiling>"],"outputs":["<target-CNLiveEnvironment-285b96a559574e49fe0e1a40c03a5a8e61e9c7c4a29ad91844f8d551bbfe0deb--ProductPostprocessingTaskProducer>"]}
"Gate target-CNLiveEnvironment-285b96a559574e49fe0e1a40c03a5a8e61e9c7c4a29ad91844f8d551bbfe0deb--ProductStructureTaskProducer": {"tool":"phony","inputs":["<target-CNLiveEnvironment-285b96a559574e49fe0e1a40c03a5a8e61e9c7c4a29ad91844f8d551bbfe0deb--start>","<target-CNLiveEnvironment-285b96a559574e49fe0e1a40c03a5a8e61e9c7c4a29ad91844f8d551bbfe0deb--begin-compiling>","<MkDir /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveEnvironment/CNLiveEnvironment.framework>","<MkDir /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveEnvironment/CNLiveEnvironment.framework/Headers>"],"outputs":["<target-CNLiveEnvironment-285b96a559574e49fe0e1a40c03a5a8e61e9c7c4a29ad91844f8d551bbfe0deb--ProductStructureTaskProducer>"]}
"Gate target-CNLiveEnvironment-285b96a559574e49fe0e1a40c03a5a8e61e9c7c4a29ad91844f8d551bbfe0deb--SanitizerTaskProducer": {"tool":"phony","inputs":["<target-CNLiveEnvironment-285b96a559574e49fe0e1a40c03a5a8e61e9c7c4a29ad91844f8d551bbfe0deb--HeadermapTaskProducer>","<target-CNLiveEnvironment-285b96a559574e49fe0e1a40c03a5a8e61e9c7c4a29ad91844f8d551bbfe0deb--begin-compiling>"],"outputs":["<target-CNLiveEnvironment-285b96a559574e49fe0e1a40c03a5a8e61e9c7c4a29ad91844f8d551bbfe0deb--SanitizerTaskProducer>"]}
"Gate target-CNLiveEnvironment-285b96a559574e49fe0e1a40c03a5a8e61e9c7c4a29ad91844f8d551bbfe0deb--StubBinaryTaskProducer": {"tool":"phony","inputs":["<target-CNLiveEnvironment-285b96a559574e49fe0e1a40c03a5a8e61e9c7c4a29ad91844f8d551bbfe0deb--HeadermapTaskProducer>","<target-CNLiveEnvironment-285b96a559574e49fe0e1a40c03a5a8e61e9c7c4a29ad91844f8d551bbfe0deb--begin-compiling>"],"outputs":["<target-CNLiveEnvironment-285b96a559574e49fe0e1a40c03a5a8e61e9c7c4a29ad91844f8d551bbfe0deb--StubBinaryTaskProducer>"]}
"Gate target-CNLiveEnvironment-285b96a559574e49fe0e1a40c03a5a8e61e9c7c4a29ad91844f8d551bbfe0deb--SwiftStandardLibrariesTaskProducer": {"tool":"phony","inputs":["<target-CNLiveEnvironment-285b96a559574e49fe0e1a40c03a5a8e61e9c7c4a29ad91844f8d551bbfe0deb--HeadermapTaskProducer>","<target-CNLiveEnvironment-285b96a559574e49fe0e1a40c03a5a8e61e9c7c4a29ad91844f8d551bbfe0deb--phase3-copy-bundle-resources>","<target-CNLiveEnvironment-285b96a559574e49fe0e1a40c03a5a8e61e9c7c4a29ad91844f8d551bbfe0deb--begin-compiling>"],"outputs":["<target-CNLiveEnvironment-285b96a559574e49fe0e1a40c03a5a8e61e9c7c4a29ad91844f8d551bbfe0deb--SwiftStandardLibrariesTaskProducer>"]}
"Gate target-CNLiveEnvironment-285b96a559574e49fe0e1a40c03a5a8e61e9c7c4a29ad91844f8d551bbfe0deb--TestTargetPostprocessingTaskProducer": {"tool":"phony","inputs":["<target-CNLiveEnvironment-285b96a559574e49fe0e1a40c03a5a8e61e9c7c4a29ad91844f8d551bbfe0deb--ProductPostprocessingTaskProducer>","<target-CNLiveEnvironment-285b96a559574e49fe0e1a40c03a5a8e61e9c7c4a29ad91844f8d551bbfe0deb--begin-compiling>"],"outputs":["<target-CNLiveEnvironment-285b96a559574e49fe0e1a40c03a5a8e61e9c7c4a29ad91844f8d551bbfe0deb--TestTargetPostprocessingTaskProducer>"]}
"Gate target-CNLiveEnvironment-285b96a559574e49fe0e1a40c03a5a8e61e9c7c4a29ad91844f8d551bbfe0deb--TestTargetTaskProducer": {"tool":"phony","inputs":["<target-CNLiveEnvironment-285b96a559574e49fe0e1a40c03a5a8e61e9c7c4a29ad91844f8d551bbfe0deb--HeadermapTaskProducer>","<target-CNLiveEnvironment-285b96a559574e49fe0e1a40c03a5a8e61e9c7c4a29ad91844f8d551bbfe0deb--begin-compiling>"],"outputs":["<target-CNLiveEnvironment-285b96a559574e49fe0e1a40c03a5a8e61e9c7c4a29ad91844f8d551bbfe0deb--TestTargetTaskProducer>"]}
"Gate target-CNLiveEnvironment-285b96a559574e49fe0e1a40c03a5a8e61e9c7c4a29ad91844f8d551bbfe0deb--VersionPlistTaskProducer": {"tool":"phony","inputs":["<target-CNLiveEnvironment-285b96a559574e49fe0e1a40c03a5a8e61e9c7c4a29ad91844f8d551bbfe0deb--HeadermapTaskProducer>","<target-CNLiveEnvironment-285b96a559574e49fe0e1a40c03a5a8e61e9c7c4a29ad91844f8d551bbfe0deb--begin-compiling>"],"outputs":["<target-CNLiveEnvironment-285b96a559574e49fe0e1a40c03a5a8e61e9c7c4a29ad91844f8d551bbfe0deb--VersionPlistTaskProducer>"]}
"Gate target-CNLiveEnvironment-285b96a559574e49fe0e1a40c03a5a8e61e9c7c4a29ad91844f8d551bbfe0deb--XCFrameworkTaskProducer": {"tool":"phony","inputs":["<target-CNLiveEnvironment-285b96a559574e49fe0e1a40c03a5a8e61e9c7c4a29ad91844f8d551bbfe0deb--ProductStructureTaskProducer>","<target-CNLiveEnvironment-285b96a559574e49fe0e1a40c03a5a8e61e9c7c4a29ad91844f8d551bbfe0deb--begin-compiling>"],"outputs":["<target-CNLiveEnvironment-285b96a559574e49fe0e1a40c03a5a8e61e9c7c4a29ad91844f8d551bbfe0deb--XCFrameworkTaskProducer>"]}
"Gate target-CNLiveEnvironment-285b96a559574e49fe0e1a40c03a5a8e61e9c7c4a29ad91844f8d551bbfe0deb--begin-compiling": {"tool":"phony","inputs":["<target-CNLiveEnvironment-285b96a559574e49fe0e1a40c03a5a8e61e9c7c4a29ad91844f8d551bbfe0deb-Debug-iphoneos-stale-file-removal>","<CreateBuildDirectory-/tmp/Pods.dst>","<CreateBuildDirectory-/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build>","<CreateBuildDirectory-/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build>"],"outputs":["<target-CNLiveEnvironment-285b96a559574e49fe0e1a40c03a5a8e61e9c7c4a29ad91844f8d551bbfe0deb--begin-compiling>"]}
"Gate target-CNLiveEnvironment-285b96a559574e49fe0e1a40c03a5a8e61e9c7c4a29ad91844f8d551bbfe0deb--end": {"tool":"phony","inputs":["<target-CNLiveEnvironment-285b96a559574e49fe0e1a40c03a5a8e61e9c7c4a29ad91844f8d551bbfe0deb--entry>","<target-CNLiveEnvironment-285b96a559574e49fe0e1a40c03a5a8e61e9c7c4a29ad91844f8d551bbfe0deb--Barrier-ChangeAlternatePermissions>","<target-CNLiveEnvironment-285b96a559574e49fe0e1a40c03a5a8e61e9c7c4a29ad91844f8d551bbfe0deb--Barrier-ChangePermissions>","<target-CNLiveEnvironment-285b96a559574e49fe0e1a40c03a5a8e61e9c7c4a29ad91844f8d551bbfe0deb--Barrier-CodeSign>","<target-CNLiveEnvironment-285b96a559574e49fe0e1a40c03a5a8e61e9c7c4a29ad91844f8d551bbfe0deb--Barrier-CopyAside>","<target-CNLiveEnvironment-285b96a559574e49fe0e1a40c03a5a8e61e9c7c4a29ad91844f8d551bbfe0deb--Barrier-RegisterExecutionPolicyException>","<target-CNLiveEnvironment-285b96a559574e49fe0e1a40c03a5a8e61e9c7c4a29ad91844f8d551bbfe0deb--Barrier-StripSymbols>","<target-CNLiveEnvironment-285b96a559574e49fe0e1a40c03a5a8e61e9c7c4a29ad91844f8d551bbfe0deb--Barrier-Validate>","<target-CNLiveEnvironment-285b96a559574e49fe0e1a40c03a5a8e61e9c7c4a29ad91844f8d551bbfe0deb--GeneratedFilesTaskProducer>","<target-CNLiveEnvironment-285b96a559574e49fe0e1a40c03a5a8e61e9c7c4a29ad91844f8d551bbfe0deb--HeadermapTaskProducer>","<target-CNLiveEnvironment-285b96a559574e49fe0e1a40c03a5a8e61e9c7c4a29ad91844f8d551bbfe0deb--InfoPlistTaskProducer>","<target-CNLiveEnvironment-285b96a559574e49fe0e1a40c03a5a8e61e9c7c4a29ad91844f8d551bbfe0deb--ModuleMapTaskProducer>","<target-CNLiveEnvironment-285b96a559574e49fe0e1a40c03a5a8e61e9c7c4a29ad91844f8d551bbfe0deb--ProductPostprocessingTaskProducer>","<target-CNLiveEnvironment-285b96a559574e49fe0e1a40c03a5a8e61e9c7c4a29ad91844f8d551bbfe0deb--ProductStructureTaskProducer>","<target-CNLiveEnvironment-285b96a559574e49fe0e1a40c03a5a8e61e9c7c4a29ad91844f8d551bbfe0deb--SanitizerTaskProducer>","<target-CNLiveEnvironment-285b96a559574e49fe0e1a40c03a5a8e61e9c7c4a29ad91844f8d551bbfe0deb--StubBinaryTaskProducer>","<target-CNLiveEnvironment-285b96a559574e49fe0e1a40c03a5a8e61e9c7c4a29ad91844f8d551bbfe0deb--SwiftStandardLibrariesTaskProducer>","<target-CNLiveEnvironment-285b96a559574e49fe0e1a40c03a5a8e61e9c7c4a29ad91844f8d551bbfe0deb--TestTargetPostprocessingTaskProducer>","<target-CNLiveEnvironment-285b96a559574e49fe0e1a40c03a5a8e61e9c7c4a29ad91844f8d551bbfe0deb--TestTargetTaskProducer>","<target-CNLiveEnvironment-285b96a559574e49fe0e1a40c03a5a8e61e9c7c4a29ad91844f8d551bbfe0deb--VersionPlistTaskProducer>","<target-CNLiveEnvironment-285b96a559574e49fe0e1a40c03a5a8e61e9c7c4a29ad91844f8d551bbfe0deb--XCFrameworkTaskProducer>","<target-CNLiveEnvironment-285b96a559574e49fe0e1a40c03a5a8e61e9c7c4a29ad91844f8d551bbfe0deb--generated-headers>","<target-CNLiveEnvironment-285b96a559574e49fe0e1a40c03a5a8e61e9c7c4a29ad91844f8d551bbfe0deb--phase0-copy-headers>","<target-CNLiveEnvironment-285b96a559574e49fe0e1a40c03a5a8e61e9c7c4a29ad91844f8d551bbfe0deb--phase1-compile-sources>","<target-CNLiveEnvironment-285b96a559574e49fe0e1a40c03a5a8e61e9c7c4a29ad91844f8d551bbfe0deb--phase3-copy-bundle-resources>","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveEnvironment.build/Objects-normal/arm64/CNLiveEnvironment-dummy.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveEnvironment.build/Objects-normal/arm64/CNLiveEnvironmentManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveEnvironment.build/Objects-normal/arm64/CNLiveEnvironment_vers.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveEnvironment.build/Objects-normal/armv7/CNLiveEnvironment-dummy.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveEnvironment.build/Objects-normal/armv7/CNLiveEnvironmentManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveEnvironment.build/Objects-normal/armv7/CNLiveEnvironment_vers.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveEnvironment/CNLiveEnvironment.framework/Headers/CNLiveEnvironment.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveEnvironment/CNLiveEnvironment.framework/Headers/CNLiveEnvironmentManager.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveEnvironment/CNLiveEnvironment.framework/Headers/CNLiveInterface.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveEnvironment/CNLiveEnvironment.framework/Headers/CNLiveEnvironment-umbrella.h","<Linked Binary /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveEnvironment/CNLiveEnvironment.framework/CNLiveEnvironment>","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveEnvironment/CNLiveEnvironment.framework/Modules/module.modulemap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveEnvironment.build/Objects-normal/arm64/Binary/CNLiveEnvironment","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveEnvironment.build/Objects-normal/armv7/Binary/CNLiveEnvironment","<MkDir /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveEnvironment/CNLiveEnvironment.framework>","<MkDir /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveEnvironment/CNLiveEnvironment.framework/Headers>","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveEnvironment/CNLiveEnvironment.framework/Info.plist","<Touch /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveEnvironment/CNLiveEnvironment.framework>","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveEnvironment.build/CNLiveEnvironment-all-non-framework-target-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveEnvironment.build/CNLiveEnvironment-all-target-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveEnvironment.build/CNLiveEnvironment-generated-files.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveEnvironment.build/CNLiveEnvironment-own-target-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveEnvironment.build/CNLiveEnvironment-project-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveEnvironment.build/CNLiveEnvironment.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveEnvironment.build/DerivedSources/CNLiveEnvironment_vers.c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveEnvironment.build/Objects-normal/arm64/CNLiveEnvironment.LinkFileList","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveEnvironment.build/Objects-normal/armv7/CNLiveEnvironment.LinkFileList","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveEnvironment.build/all-product-headers.yaml","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveEnvironment.build/module.modulemap"],"outputs":["<target-CNLiveEnvironment-285b96a559574e49fe0e1a40c03a5a8e61e9c7c4a29ad91844f8d551bbfe0deb--end>"]}
"Gate target-CNLiveEnvironment-285b96a559574e49fe0e1a40c03a5a8e61e9c7c4a29ad91844f8d551bbfe0deb--entry": {"tool":"phony","inputs":["<target-CNLiveEnvironment-285b96a559574e49fe0e1a40c03a5a8e61e9c7c4a29ad91844f8d551bbfe0deb-Debug-iphoneos-stale-file-removal>","<CreateBuildDirectory-/tmp/Pods.dst>","<CreateBuildDirectory-/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build>","<CreateBuildDirectory-/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build>","<target-CNLiveEnvironment-285b96a559574e49fe0e1a40c03a5a8e61e9c7c4a29ad91844f8d551bbfe0deb--begin-compiling>"],"outputs":["<target-CNLiveEnvironment-285b96a559574e49fe0e1a40c03a5a8e61e9c7c4a29ad91844f8d551bbfe0deb--entry>"]}
"Gate target-CNLiveEnvironment-285b96a559574e49fe0e1a40c03a5a8e61e9c7c4a29ad91844f8d551bbfe0deb--generated-headers": {"tool":"phony","inputs":["<target-CNLiveEnvironment-285b96a559574e49fe0e1a40c03a5a8e61e9c7c4a29ad91844f8d551bbfe0deb--begin-compiling>"],"outputs":["<target-CNLiveEnvironment-285b96a559574e49fe0e1a40c03a5a8e61e9c7c4a29ad91844f8d551bbfe0deb--generated-headers>"]}
"Gate target-CNLiveEnvironment-285b96a559574e49fe0e1a40c03a5a8e61e9c7c4a29ad91844f8d551bbfe0deb--immediate": {"tool":"phony","inputs":["<target-CNLiveEnvironment-285b96a559574e49fe0e1a40c03a5a8e61e9c7c4a29ad91844f8d551bbfe0deb-Debug-iphoneos-stale-file-removal>","<CreateBuildDirectory-/tmp/Pods.dst>","<CreateBuildDirectory-/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build>","<CreateBuildDirectory-/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build>"],"outputs":["<target-CNLiveEnvironment-285b96a559574e49fe0e1a40c03a5a8e61e9c7c4a29ad91844f8d551bbfe0deb--immediate>"]}
"Gate target-CNLiveEnvironment-285b96a559574e49fe0e1a40c03a5a8e61e9c7c4a29ad91844f8d551bbfe0deb--modules-ready": {"tool":"phony","inputs":["<target-CNLiveEnvironment-285b96a559574e49fe0e1a40c03a5a8e61e9c7c4a29ad91844f8d551bbfe0deb--begin-compiling>","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveEnvironment.build/Objects-normal/arm64/CNLiveEnvironment-dummy.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveEnvironment.build/Objects-normal/arm64/CNLiveEnvironmentManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveEnvironment.build/Objects-normal/arm64/CNLiveEnvironment_vers.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveEnvironment.build/Objects-normal/armv7/CNLiveEnvironment-dummy.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveEnvironment.build/Objects-normal/armv7/CNLiveEnvironmentManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveEnvironment.build/Objects-normal/armv7/CNLiveEnvironment_vers.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveEnvironment/CNLiveEnvironment.framework/Headers/CNLiveEnvironment.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveEnvironment/CNLiveEnvironment.framework/Headers/CNLiveEnvironmentManager.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveEnvironment/CNLiveEnvironment.framework/Headers/CNLiveInterface.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveEnvironment/CNLiveEnvironment.framework/Headers/CNLiveEnvironment-umbrella.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveEnvironment.build/DerivedSources/CNLiveEnvironment_vers.c"],"outputs":["<target-CNLiveEnvironment-285b96a559574e49fe0e1a40c03a5a8e61e9c7c4a29ad91844f8d551bbfe0deb--modules-ready>"]}
"Gate target-CNLiveEnvironment-285b96a559574e49fe0e1a40c03a5a8e61e9c7c4a29ad91844f8d551bbfe0deb--phase0-copy-headers": {"tool":"phony","inputs":["<target-CNLiveEnvironment-285b96a559574e49fe0e1a40c03a5a8e61e9c7c4a29ad91844f8d551bbfe0deb--HeadermapTaskProducer>","<target-CNLiveEnvironment-285b96a559574e49fe0e1a40c03a5a8e61e9c7c4a29ad91844f8d551bbfe0deb--begin-compiling>","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveEnvironment/CNLiveEnvironment.framework/Headers/CNLiveEnvironment.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveEnvironment/CNLiveEnvironment.framework/Headers/CNLiveEnvironmentManager.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveEnvironment/CNLiveEnvironment.framework/Headers/CNLiveInterface.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveEnvironment/CNLiveEnvironment.framework/Headers/CNLiveEnvironment-umbrella.h"],"outputs":["<target-CNLiveEnvironment-285b96a559574e49fe0e1a40c03a5a8e61e9c7c4a29ad91844f8d551bbfe0deb--phase0-copy-headers>"]}
"Gate target-CNLiveEnvironment-285b96a559574e49fe0e1a40c03a5a8e61e9c7c4a29ad91844f8d551bbfe0deb--phase1-compile-sources": {"tool":"phony","inputs":["<target-CNLiveEnvironment-285b96a559574e49fe0e1a40c03a5a8e61e9c7c4a29ad91844f8d551bbfe0deb--phase0-copy-headers>","<target-CNLiveEnvironment-285b96a559574e49fe0e1a40c03a5a8e61e9c7c4a29ad91844f8d551bbfe0deb--begin-compiling>","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveEnvironment.build/Objects-normal/arm64/CNLiveEnvironment-dummy.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveEnvironment.build/Objects-normal/arm64/CNLiveEnvironmentManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveEnvironment.build/Objects-normal/arm64/CNLiveEnvironment_vers.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveEnvironment.build/Objects-normal/armv7/CNLiveEnvironment-dummy.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveEnvironment.build/Objects-normal/armv7/CNLiveEnvironmentManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveEnvironment.build/Objects-normal/armv7/CNLiveEnvironment_vers.o","<Linked Binary /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveEnvironment/CNLiveEnvironment.framework/CNLiveEnvironment>","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveEnvironment.build/Objects-normal/arm64/Binary/CNLiveEnvironment","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveEnvironment.build/Objects-normal/armv7/Binary/CNLiveEnvironment","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveEnvironment.build/DerivedSources/CNLiveEnvironment_vers.c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveEnvironment.build/Objects-normal/arm64/CNLiveEnvironment.LinkFileList","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveEnvironment.build/Objects-normal/armv7/CNLiveEnvironment.LinkFileList"],"outputs":["<target-CNLiveEnvironment-285b96a559574e49fe0e1a40c03a5a8e61e9c7c4a29ad91844f8d551bbfe0deb--phase1-compile-sources>"]}
"Gate target-CNLiveEnvironment-285b96a559574e49fe0e1a40c03a5a8e61e9c7c4a29ad91844f8d551bbfe0deb--phase3-copy-bundle-resources": {"tool":"phony","inputs":["<target-CNLiveEnvironment-285b96a559574e49fe0e1a40c03a5a8e61e9c7c4a29ad91844f8d551bbfe0deb--phase1-compile-sources>","<target-CNLiveEnvironment-285b96a559574e49fe0e1a40c03a5a8e61e9c7c4a29ad91844f8d551bbfe0deb--begin-compiling>"],"outputs":["<target-CNLiveEnvironment-285b96a559574e49fe0e1a40c03a5a8e61e9c7c4a29ad91844f8d551bbfe0deb--phase3-copy-bundle-resources>"]}
"Gate target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--Barrier-ChangeAlternatePermissions": {"tool":"phony","inputs":["<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--Barrier-ChangePermissions>","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--begin-compiling>"],"outputs":["<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--Barrier-ChangeAlternatePermissions>"]}
"Gate target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--Barrier-ChangePermissions": {"tool":"phony","inputs":["<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--Barrier-StripSymbols>","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--begin-compiling>"],"outputs":["<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--Barrier-ChangePermissions>"]}
"Gate target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--Barrier-CodeSign": {"tool":"phony","inputs":["<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--Barrier-ChangeAlternatePermissions>","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--begin-compiling>"],"outputs":["<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--Barrier-CodeSign>"]}
"Gate target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--Barrier-CopyAside": {"tool":"phony","inputs":["<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--ProductPostprocessingTaskProducer>","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--begin-compiling>"],"outputs":["<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--Barrier-CopyAside>"]}
"Gate target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--Barrier-RegisterExecutionPolicyException": {"tool":"phony","inputs":["<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--Barrier-CodeSign>","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--begin-compiling>"],"outputs":["<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--Barrier-RegisterExecutionPolicyException>"]}
"Gate target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--Barrier-StripSymbols": {"tool":"phony","inputs":["<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--Barrier-CopyAside>","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--begin-compiling>"],"outputs":["<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--Barrier-StripSymbols>"]}
"Gate target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--Barrier-Validate": {"tool":"phony","inputs":["<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--Barrier-RegisterExecutionPolicyException>","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--begin-compiling>","<Touch /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/CNLiveIntegralModule.framework>"],"outputs":["<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--Barrier-Validate>"]}
"Gate target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--GeneratedFilesTaskProducer": {"tool":"phony","inputs":["<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--XCFrameworkTaskProducer>","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--begin-compiling>"],"outputs":["<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--GeneratedFilesTaskProducer>"]}
"Gate target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--HeadermapTaskProducer": {"tool":"phony","inputs":["<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--GeneratedFilesTaskProducer>","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--begin-compiling>","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/CNLiveIntegralModule-all-non-framework-target-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/CNLiveIntegralModule-all-target-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/CNLiveIntegralModule-generated-files.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/CNLiveIntegralModule-own-target-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/CNLiveIntegralModule-project-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/CNLiveIntegralModule.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/all-product-headers.yaml"],"outputs":["<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--HeadermapTaskProducer>"]}
"Gate target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--InfoPlistTaskProducer": {"tool":"phony","inputs":["<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--HeadermapTaskProducer>","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--begin-compiling>","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/CNLiveIntegralModule.framework/Info.plist"],"outputs":["<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--InfoPlistTaskProducer>"]}
"Gate target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--ModuleMapTaskProducer": {"tool":"phony","inputs":["<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--HeadermapTaskProducer>","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--begin-compiling>","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/CNLiveIntegralModule.framework/Modules/module.modulemap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/module.modulemap"],"outputs":["<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--ModuleMapTaskProducer>"]}
"Gate target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--ProductPostprocessingTaskProducer": {"tool":"phony","inputs":["<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--HeadermapTaskProducer>","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--phase3-copy-bundle-resources>","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--InfoPlistTaskProducer>","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--VersionPlistTaskProducer>","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--SanitizerTaskProducer>","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--ModuleMapTaskProducer>","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--SwiftStandardLibrariesTaskProducer>","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--StubBinaryTaskProducer>","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--TestTargetTaskProducer>","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--begin-compiling>"],"outputs":["<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--ProductPostprocessingTaskProducer>"]}
"Gate target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--ProductStructureTaskProducer": {"tool":"phony","inputs":["<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--start>","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--begin-compiling>","<MkDir /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/CNLiveIntegralModule.framework>","<MkDir /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/CNLiveIntegralModule.framework/Headers>"],"outputs":["<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--ProductStructureTaskProducer>"]}
"Gate target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--SanitizerTaskProducer": {"tool":"phony","inputs":["<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--HeadermapTaskProducer>","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--begin-compiling>"],"outputs":["<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--SanitizerTaskProducer>"]}
"Gate target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--StubBinaryTaskProducer": {"tool":"phony","inputs":["<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--HeadermapTaskProducer>","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--begin-compiling>"],"outputs":["<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--StubBinaryTaskProducer>"]}
"Gate target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--SwiftStandardLibrariesTaskProducer": {"tool":"phony","inputs":["<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--HeadermapTaskProducer>","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--phase3-copy-bundle-resources>","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--begin-compiling>"],"outputs":["<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--SwiftStandardLibrariesTaskProducer>"]}
"Gate target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--TestTargetPostprocessingTaskProducer": {"tool":"phony","inputs":["<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--ProductPostprocessingTaskProducer>","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--begin-compiling>"],"outputs":["<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--TestTargetPostprocessingTaskProducer>"]}
"Gate target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--TestTargetTaskProducer": {"tool":"phony","inputs":["<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--HeadermapTaskProducer>","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--begin-compiling>"],"outputs":["<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--TestTargetTaskProducer>"]}
"Gate target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--VersionPlistTaskProducer": {"tool":"phony","inputs":["<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--HeadermapTaskProducer>","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--begin-compiling>"],"outputs":["<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--VersionPlistTaskProducer>"]}
"Gate target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--XCFrameworkTaskProducer": {"tool":"phony","inputs":["<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--ProductStructureTaskProducer>","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--begin-compiling>"],"outputs":["<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--XCFrameworkTaskProducer>"]}
"Gate target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--begin-compiling": {"tool":"phony","inputs":["<target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9--modules-ready>","<target-CNLiveEnvironment-285b96a559574e49fe0e1a40c03a5a8e61e9c7c4a29ad91844f8d551bbfe0deb--modules-ready>","<target-CNLiveIntegralModule-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8efe4e531668133d9170ede618cb4425d1--modules-ready>","<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--modules-ready>","<target-CNLiveServices-285b96a559574e49fe0e1a40c03a5a8e91d5e9d88631ee0f0e480b2efaa1542a--modules-ready>","<target-CNLiveTripartiteManagement-285b96a559574e49fe0e1a40c03a5a8ec69cdcecdf4ee3a594726fb547f0e760--modules-ready>","<target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4--modules-ready>","<target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea--modules-ready>","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285-Debug-iphoneos-stale-file-removal>","<CreateBuildDirectory-/tmp/Pods.dst>","<CreateBuildDirectory-/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build>","<CreateBuildDirectory-/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build>"],"outputs":["<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--begin-compiling>"]}
"Gate target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--end": {"tool":"phony","inputs":["<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--entry>","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--Barrier-ChangeAlternatePermissions>","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--Barrier-ChangePermissions>","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--Barrier-CodeSign>","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--Barrier-CopyAside>","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--Barrier-RegisterExecutionPolicyException>","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--Barrier-StripSymbols>","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--Barrier-Validate>","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--GeneratedFilesTaskProducer>","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--HeadermapTaskProducer>","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--InfoPlistTaskProducer>","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--ModuleMapTaskProducer>","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--ProductPostprocessingTaskProducer>","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--ProductStructureTaskProducer>","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--SanitizerTaskProducer>","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--StubBinaryTaskProducer>","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--SwiftStandardLibrariesTaskProducer>","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--TestTargetPostprocessingTaskProducer>","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--TestTargetTaskProducer>","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--VersionPlistTaskProducer>","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--XCFrameworkTaskProducer>","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--generated-headers>","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--phase0-copy-headers>","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--phase1-compile-sources>","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--phase3-copy-bundle-resources>","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CAEmitterLayerView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveAddScoreManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveAddScoreView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveGoldWhereaboutsView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveIntegralDetailsController.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveIntegralDetailsTableViewCell.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveIntegralModule-dummy.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveIntegralModule.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveIntegralModule_vers.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveIntegralNavigationBar.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveIntegralService.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveRewardRulesView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveScoreModel.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveSignInButtonSelectView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveSignInButtonView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveSignInView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveTaskListController.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveTaskListHeaderView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveTaskListModel.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveTaskListSectionHeaderView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveTaskListTableViewCell.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CAEmitterLayerView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveAddScoreManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveAddScoreView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveGoldWhereaboutsView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveIntegralDetailsController.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveIntegralDetailsTableViewCell.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveIntegralModule-dummy.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveIntegralModule.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveIntegralModule_vers.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveIntegralNavigationBar.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveIntegralService.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveRewardRulesView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveScoreModel.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveSignInButtonSelectView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveSignInButtonView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveSignInView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveTaskListController.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveTaskListHeaderView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveTaskListModel.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveTaskListSectionHeaderView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveTaskListTableViewCell.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/CNLiveIntegralModule.framework/Headers/CNLiveIntegralDetailsController.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/CNLiveIntegralModule.framework/Headers/CNLiveTaskListController.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/CNLiveIntegralModule.framework/Headers/CNLiveScoreModel.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/CNLiveIntegralModule.framework/Headers/CNLiveTaskListModel.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/CNLiveIntegralModule.framework/Headers/CNLiveIntegralModule.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/CNLiveIntegralModule.framework/Headers/CNLiveIntegralService.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/CNLiveIntegralModule.framework/Headers/CNLiveAddScoreManager.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/CNLiveIntegralModule.framework/Headers/CNLiveAddScoreView.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/CNLiveIntegralModule.framework/Headers/CNLiveGoldWhereaboutsView.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/CNLiveIntegralModule.framework/Headers/CNLiveRewardRulesView.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/CNLiveIntegralModule.framework/Headers/CNLiveSignInView.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/CNLiveIntegralModule.framework/Headers/CAEmitterLayerView.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/CNLiveIntegralModule.framework/Headers/CNLiveIntegralDetailsTableViewCell.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/CNLiveIntegralModule.framework/Headers/CNLiveIntegralNavigationBar.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/CNLiveIntegralModule.framework/Headers/CNLiveSignInButtonSelectView.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/CNLiveIntegralModule.framework/Headers/CNLiveSignInButtonView.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/CNLiveIntegralModule.framework/Headers/CNLiveTaskListHeaderView.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/CNLiveIntegralModule.framework/Headers/CNLiveTaskListSectionHeaderView.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/CNLiveIntegralModule.framework/Headers/CNLiveTaskListTableViewCell.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/CNLiveIntegralModule.framework/Headers/CNLiveIntegralModule-umbrella.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/CNLiveIntegralModule.framework/CNLiveIntegralModule.bundle","<Linked Binary /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/CNLiveIntegralModule.framework/CNLiveIntegralModule>","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/CNLiveIntegralModule.framework/Modules/module.modulemap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/Binary/CNLiveIntegralModule","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/Binary/CNLiveIntegralModule","<MkDir /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/CNLiveIntegralModule.framework>","<MkDir /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/CNLiveIntegralModule.framework/Headers>","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/CNLiveIntegralModule.framework/Info.plist","<Touch /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/CNLiveIntegralModule.framework>","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/CNLiveIntegralModule-all-non-framework-target-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/CNLiveIntegralModule-all-target-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/CNLiveIntegralModule-generated-files.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/CNLiveIntegralModule-own-target-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/CNLiveIntegralModule-project-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/CNLiveIntegralModule.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/DerivedSources/CNLiveIntegralModule_vers.c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveIntegralModule.LinkFileList","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveIntegralModule.LinkFileList","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/all-product-headers.yaml","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/module.modulemap"],"outputs":["<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--end>"]}
"Gate target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--entry": {"tool":"phony","inputs":["<target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9--end>","<target-CNLiveEnvironment-285b96a559574e49fe0e1a40c03a5a8e61e9c7c4a29ad91844f8d551bbfe0deb--end>","<target-CNLiveIntegralModule-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8efe4e531668133d9170ede618cb4425d1--end>","<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--end>","<target-CNLiveServices-285b96a559574e49fe0e1a40c03a5a8e91d5e9d88631ee0f0e480b2efaa1542a--end>","<target-CNLiveTripartiteManagement-285b96a559574e49fe0e1a40c03a5a8ec69cdcecdf4ee3a594726fb547f0e760--end>","<target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4--end>","<target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea--end>","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285-Debug-iphoneos-stale-file-removal>","<CreateBuildDirectory-/tmp/Pods.dst>","<CreateBuildDirectory-/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build>","<CreateBuildDirectory-/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build>","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--begin-compiling>"],"outputs":["<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--entry>"]}
"Gate target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--generated-headers": {"tool":"phony","inputs":["<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--begin-compiling>"],"outputs":["<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--generated-headers>"]}
"Gate target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--immediate": {"tool":"phony","inputs":["<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285-Debug-iphoneos-stale-file-removal>","<CreateBuildDirectory-/tmp/Pods.dst>","<CreateBuildDirectory-/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build>","<CreateBuildDirectory-/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build>"],"outputs":["<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--immediate>"]}
"Gate target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--modules-ready": {"tool":"phony","inputs":["<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--begin-compiling>","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CAEmitterLayerView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveAddScoreManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveAddScoreView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveGoldWhereaboutsView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveIntegralDetailsController.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveIntegralDetailsTableViewCell.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveIntegralModule-dummy.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveIntegralModule.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveIntegralModule_vers.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveIntegralNavigationBar.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveIntegralService.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveRewardRulesView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveScoreModel.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveSignInButtonSelectView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveSignInButtonView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveSignInView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveTaskListController.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveTaskListHeaderView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveTaskListModel.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveTaskListSectionHeaderView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveTaskListTableViewCell.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CAEmitterLayerView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveAddScoreManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveAddScoreView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveGoldWhereaboutsView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveIntegralDetailsController.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveIntegralDetailsTableViewCell.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveIntegralModule-dummy.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveIntegralModule.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveIntegralModule_vers.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveIntegralNavigationBar.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveIntegralService.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveRewardRulesView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveScoreModel.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveSignInButtonSelectView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveSignInButtonView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveSignInView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveTaskListController.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveTaskListHeaderView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveTaskListModel.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveTaskListSectionHeaderView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveTaskListTableViewCell.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/CNLiveIntegralModule.framework/Headers/CNLiveIntegralDetailsController.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/CNLiveIntegralModule.framework/Headers/CNLiveTaskListController.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/CNLiveIntegralModule.framework/Headers/CNLiveScoreModel.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/CNLiveIntegralModule.framework/Headers/CNLiveTaskListModel.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/CNLiveIntegralModule.framework/Headers/CNLiveIntegralModule.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/CNLiveIntegralModule.framework/Headers/CNLiveIntegralService.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/CNLiveIntegralModule.framework/Headers/CNLiveAddScoreManager.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/CNLiveIntegralModule.framework/Headers/CNLiveAddScoreView.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/CNLiveIntegralModule.framework/Headers/CNLiveGoldWhereaboutsView.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/CNLiveIntegralModule.framework/Headers/CNLiveRewardRulesView.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/CNLiveIntegralModule.framework/Headers/CNLiveSignInView.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/CNLiveIntegralModule.framework/Headers/CAEmitterLayerView.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/CNLiveIntegralModule.framework/Headers/CNLiveIntegralDetailsTableViewCell.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/CNLiveIntegralModule.framework/Headers/CNLiveIntegralNavigationBar.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/CNLiveIntegralModule.framework/Headers/CNLiveSignInButtonSelectView.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/CNLiveIntegralModule.framework/Headers/CNLiveSignInButtonView.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/CNLiveIntegralModule.framework/Headers/CNLiveTaskListHeaderView.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/CNLiveIntegralModule.framework/Headers/CNLiveTaskListSectionHeaderView.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/CNLiveIntegralModule.framework/Headers/CNLiveTaskListTableViewCell.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/CNLiveIntegralModule.framework/Headers/CNLiveIntegralModule-umbrella.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/DerivedSources/CNLiveIntegralModule_vers.c"],"outputs":["<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--modules-ready>"]}
"Gate target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--phase0-copy-headers": {"tool":"phony","inputs":["<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--HeadermapTaskProducer>","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--begin-compiling>","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/CNLiveIntegralModule.framework/Headers/CNLiveIntegralDetailsController.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/CNLiveIntegralModule.framework/Headers/CNLiveTaskListController.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/CNLiveIntegralModule.framework/Headers/CNLiveScoreModel.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/CNLiveIntegralModule.framework/Headers/CNLiveTaskListModel.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/CNLiveIntegralModule.framework/Headers/CNLiveIntegralModule.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/CNLiveIntegralModule.framework/Headers/CNLiveIntegralService.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/CNLiveIntegralModule.framework/Headers/CNLiveAddScoreManager.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/CNLiveIntegralModule.framework/Headers/CNLiveAddScoreView.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/CNLiveIntegralModule.framework/Headers/CNLiveGoldWhereaboutsView.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/CNLiveIntegralModule.framework/Headers/CNLiveRewardRulesView.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/CNLiveIntegralModule.framework/Headers/CNLiveSignInView.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/CNLiveIntegralModule.framework/Headers/CAEmitterLayerView.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/CNLiveIntegralModule.framework/Headers/CNLiveIntegralDetailsTableViewCell.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/CNLiveIntegralModule.framework/Headers/CNLiveIntegralNavigationBar.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/CNLiveIntegralModule.framework/Headers/CNLiveSignInButtonSelectView.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/CNLiveIntegralModule.framework/Headers/CNLiveSignInButtonView.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/CNLiveIntegralModule.framework/Headers/CNLiveTaskListHeaderView.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/CNLiveIntegralModule.framework/Headers/CNLiveTaskListSectionHeaderView.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/CNLiveIntegralModule.framework/Headers/CNLiveTaskListTableViewCell.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/CNLiveIntegralModule.framework/Headers/CNLiveIntegralModule-umbrella.h"],"outputs":["<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--phase0-copy-headers>"]}
"Gate target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--phase1-compile-sources": {"tool":"phony","inputs":["<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--phase0-copy-headers>","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--begin-compiling>","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CAEmitterLayerView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveAddScoreManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveAddScoreView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveGoldWhereaboutsView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveIntegralDetailsController.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveIntegralDetailsTableViewCell.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveIntegralModule-dummy.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveIntegralModule.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveIntegralModule_vers.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveIntegralNavigationBar.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveIntegralService.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveRewardRulesView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveScoreModel.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveSignInButtonSelectView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveSignInButtonView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveSignInView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveTaskListController.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveTaskListHeaderView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveTaskListModel.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveTaskListSectionHeaderView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveTaskListTableViewCell.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CAEmitterLayerView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveAddScoreManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveAddScoreView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveGoldWhereaboutsView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveIntegralDetailsController.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveIntegralDetailsTableViewCell.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveIntegralModule-dummy.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveIntegralModule.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveIntegralModule_vers.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveIntegralNavigationBar.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveIntegralService.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveRewardRulesView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveScoreModel.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveSignInButtonSelectView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveSignInButtonView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveSignInView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveTaskListController.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveTaskListHeaderView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveTaskListModel.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveTaskListSectionHeaderView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveTaskListTableViewCell.o","<Linked Binary /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/CNLiveIntegralModule.framework/CNLiveIntegralModule>","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/Binary/CNLiveIntegralModule","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/Binary/CNLiveIntegralModule","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/DerivedSources/CNLiveIntegralModule_vers.c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveIntegralModule.LinkFileList","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveIntegralModule.LinkFileList"],"outputs":["<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--phase1-compile-sources>"]}
"Gate target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--phase3-copy-bundle-resources": {"tool":"phony","inputs":["<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--phase1-compile-sources>","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--begin-compiling>","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/CNLiveIntegralModule.framework/CNLiveIntegralModule.bundle"],"outputs":["<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--phase3-copy-bundle-resources>"]}
"Gate target-CNLiveIntegralModule-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8efe4e531668133d9170ede618cb4425d1--Barrier-ChangeAlternatePermissions": {"tool":"phony","inputs":["<target-CNLiveIntegralModule-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8efe4e531668133d9170ede618cb4425d1--Barrier-ChangePermissions>","<target-CNLiveIntegralModule-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8efe4e531668133d9170ede618cb4425d1--begin-compiling>"],"outputs":["<target-CNLiveIntegralModule-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8efe4e531668133d9170ede618cb4425d1--Barrier-ChangeAlternatePermissions>"]}
"Gate target-CNLiveIntegralModule-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8efe4e531668133d9170ede618cb4425d1--Barrier-ChangePermissions": {"tool":"phony","inputs":["<target-CNLiveIntegralModule-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8efe4e531668133d9170ede618cb4425d1--Barrier-StripSymbols>","<target-CNLiveIntegralModule-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8efe4e531668133d9170ede618cb4425d1--begin-compiling>"],"outputs":["<target-CNLiveIntegralModule-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8efe4e531668133d9170ede618cb4425d1--Barrier-ChangePermissions>"]}
"Gate target-CNLiveIntegralModule-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8efe4e531668133d9170ede618cb4425d1--Barrier-CodeSign": {"tool":"phony","inputs":["<target-CNLiveIntegralModule-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8efe4e531668133d9170ede618cb4425d1--Barrier-ChangeAlternatePermissions>","<target-CNLiveIntegralModule-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8efe4e531668133d9170ede618cb4425d1--begin-compiling>"],"outputs":["<target-CNLiveIntegralModule-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8efe4e531668133d9170ede618cb4425d1--Barrier-CodeSign>"]}
"Gate target-CNLiveIntegralModule-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8efe4e531668133d9170ede618cb4425d1--Barrier-CopyAside": {"tool":"phony","inputs":["<target-CNLiveIntegralModule-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8efe4e531668133d9170ede618cb4425d1--ProductPostprocessingTaskProducer>","<target-CNLiveIntegralModule-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8efe4e531668133d9170ede618cb4425d1--begin-compiling>"],"outputs":["<target-CNLiveIntegralModule-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8efe4e531668133d9170ede618cb4425d1--Barrier-CopyAside>"]}
"Gate target-CNLiveIntegralModule-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8efe4e531668133d9170ede618cb4425d1--Barrier-RegisterExecutionPolicyException": {"tool":"phony","inputs":["<target-CNLiveIntegralModule-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8efe4e531668133d9170ede618cb4425d1--Barrier-CodeSign>","<target-CNLiveIntegralModule-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8efe4e531668133d9170ede618cb4425d1--begin-compiling>"],"outputs":["<target-CNLiveIntegralModule-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8efe4e531668133d9170ede618cb4425d1--Barrier-RegisterExecutionPolicyException>"]}
"Gate target-CNLiveIntegralModule-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8efe4e531668133d9170ede618cb4425d1--Barrier-StripSymbols": {"tool":"phony","inputs":["<target-CNLiveIntegralModule-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8efe4e531668133d9170ede618cb4425d1--Barrier-CopyAside>","<target-CNLiveIntegralModule-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8efe4e531668133d9170ede618cb4425d1--begin-compiling>"],"outputs":["<target-CNLiveIntegralModule-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8efe4e531668133d9170ede618cb4425d1--Barrier-StripSymbols>"]}
"Gate target-CNLiveIntegralModule-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8efe4e531668133d9170ede618cb4425d1--Barrier-Validate": {"tool":"phony","inputs":["<target-CNLiveIntegralModule-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8efe4e531668133d9170ede618cb4425d1--Barrier-RegisterExecutionPolicyException>","<target-CNLiveIntegralModule-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8efe4e531668133d9170ede618cb4425d1--begin-compiling>","<Touch /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/CNLiveIntegralModule.bundle>"],"outputs":["<target-CNLiveIntegralModule-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8efe4e531668133d9170ede618cb4425d1--Barrier-Validate>"]}
"Gate target-CNLiveIntegralModule-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8efe4e531668133d9170ede618cb4425d1--GeneratedFilesTaskProducer": {"tool":"phony","inputs":["<target-CNLiveIntegralModule-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8efe4e531668133d9170ede618cb4425d1--XCFrameworkTaskProducer>","<target-CNLiveIntegralModule-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8efe4e531668133d9170ede618cb4425d1--begin-compiling>"],"outputs":["<target-CNLiveIntegralModule-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8efe4e531668133d9170ede618cb4425d1--GeneratedFilesTaskProducer>"]}
"Gate target-CNLiveIntegralModule-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8efe4e531668133d9170ede618cb4425d1--HeadermapTaskProducer": {"tool":"phony","inputs":["<target-CNLiveIntegralModule-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8efe4e531668133d9170ede618cb4425d1--GeneratedFilesTaskProducer>","<target-CNLiveIntegralModule-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8efe4e531668133d9170ede618cb4425d1--begin-compiling>","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule-CNLiveIntegralModule.build/CNLiveIntegralModule-all-non-framework-target-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule-CNLiveIntegralModule.build/CNLiveIntegralModule-all-target-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule-CNLiveIntegralModule.build/CNLiveIntegralModule-generated-files.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule-CNLiveIntegralModule.build/CNLiveIntegralModule-own-target-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule-CNLiveIntegralModule.build/CNLiveIntegralModule-project-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule-CNLiveIntegralModule.build/CNLiveIntegralModule.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule-CNLiveIntegralModule.build/all-product-headers.yaml"],"outputs":["<target-CNLiveIntegralModule-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8efe4e531668133d9170ede618cb4425d1--HeadermapTaskProducer>"]}
"Gate target-CNLiveIntegralModule-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8efe4e531668133d9170ede618cb4425d1--InfoPlistTaskProducer": {"tool":"phony","inputs":["<target-CNLiveIntegralModule-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8efe4e531668133d9170ede618cb4425d1--HeadermapTaskProducer>","<target-CNLiveIntegralModule-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8efe4e531668133d9170ede618cb4425d1--begin-compiling>","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/CNLiveIntegralModule.bundle/Info.plist"],"outputs":["<target-CNLiveIntegralModule-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8efe4e531668133d9170ede618cb4425d1--InfoPlistTaskProducer>"]}
"Gate target-CNLiveIntegralModule-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8efe4e531668133d9170ede618cb4425d1--ModuleMapTaskProducer": {"tool":"phony","inputs":["<target-CNLiveIntegralModule-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8efe4e531668133d9170ede618cb4425d1--HeadermapTaskProducer>","<target-CNLiveIntegralModule-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8efe4e531668133d9170ede618cb4425d1--begin-compiling>"],"outputs":["<target-CNLiveIntegralModule-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8efe4e531668133d9170ede618cb4425d1--ModuleMapTaskProducer>"]}
"Gate target-CNLiveIntegralModule-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8efe4e531668133d9170ede618cb4425d1--ProductPostprocessingTaskProducer": {"tool":"phony","inputs":["<target-CNLiveIntegralModule-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8efe4e531668133d9170ede618cb4425d1--HeadermapTaskProducer>","<target-CNLiveIntegralModule-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8efe4e531668133d9170ede618cb4425d1--phase2-copy-bundle-resources>","<target-CNLiveIntegralModule-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8efe4e531668133d9170ede618cb4425d1--InfoPlistTaskProducer>","<target-CNLiveIntegralModule-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8efe4e531668133d9170ede618cb4425d1--VersionPlistTaskProducer>","<target-CNLiveIntegralModule-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8efe4e531668133d9170ede618cb4425d1--SanitizerTaskProducer>","<target-CNLiveIntegralModule-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8efe4e531668133d9170ede618cb4425d1--ModuleMapTaskProducer>","<target-CNLiveIntegralModule-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8efe4e531668133d9170ede618cb4425d1--SwiftStandardLibrariesTaskProducer>","<target-CNLiveIntegralModule-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8efe4e531668133d9170ede618cb4425d1--StubBinaryTaskProducer>","<target-CNLiveIntegralModule-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8efe4e531668133d9170ede618cb4425d1--TestTargetTaskProducer>","<target-CNLiveIntegralModule-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8efe4e531668133d9170ede618cb4425d1--begin-compiling>"],"outputs":["<target-CNLiveIntegralModule-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8efe4e531668133d9170ede618cb4425d1--ProductPostprocessingTaskProducer>"]}
"Gate target-CNLiveIntegralModule-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8efe4e531668133d9170ede618cb4425d1--ProductStructureTaskProducer": {"tool":"phony","inputs":["<target-CNLiveIntegralModule-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8efe4e531668133d9170ede618cb4425d1--start>","<target-CNLiveIntegralModule-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8efe4e531668133d9170ede618cb4425d1--begin-compiling>","<MkDir /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/CNLiveIntegralModule.bundle>"],"outputs":["<target-CNLiveIntegralModule-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8efe4e531668133d9170ede618cb4425d1--ProductStructureTaskProducer>"]}
"Gate target-CNLiveIntegralModule-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8efe4e531668133d9170ede618cb4425d1--SanitizerTaskProducer": {"tool":"phony","inputs":["<target-CNLiveIntegralModule-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8efe4e531668133d9170ede618cb4425d1--HeadermapTaskProducer>","<target-CNLiveIntegralModule-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8efe4e531668133d9170ede618cb4425d1--begin-compiling>"],"outputs":["<target-CNLiveIntegralModule-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8efe4e531668133d9170ede618cb4425d1--SanitizerTaskProducer>"]}
"Gate target-CNLiveIntegralModule-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8efe4e531668133d9170ede618cb4425d1--StubBinaryTaskProducer": {"tool":"phony","inputs":["<target-CNLiveIntegralModule-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8efe4e531668133d9170ede618cb4425d1--HeadermapTaskProducer>","<target-CNLiveIntegralModule-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8efe4e531668133d9170ede618cb4425d1--begin-compiling>"],"outputs":["<target-CNLiveIntegralModule-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8efe4e531668133d9170ede618cb4425d1--StubBinaryTaskProducer>"]}
"Gate target-CNLiveIntegralModule-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8efe4e531668133d9170ede618cb4425d1--SwiftStandardLibrariesTaskProducer": {"tool":"phony","inputs":["<target-CNLiveIntegralModule-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8efe4e531668133d9170ede618cb4425d1--HeadermapTaskProducer>","<target-CNLiveIntegralModule-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8efe4e531668133d9170ede618cb4425d1--phase2-copy-bundle-resources>","<target-CNLiveIntegralModule-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8efe4e531668133d9170ede618cb4425d1--begin-compiling>"],"outputs":["<target-CNLiveIntegralModule-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8efe4e531668133d9170ede618cb4425d1--SwiftStandardLibrariesTaskProducer>"]}
"Gate target-CNLiveIntegralModule-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8efe4e531668133d9170ede618cb4425d1--TestTargetPostprocessingTaskProducer": {"tool":"phony","inputs":["<target-CNLiveIntegralModule-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8efe4e531668133d9170ede618cb4425d1--ProductPostprocessingTaskProducer>","<target-CNLiveIntegralModule-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8efe4e531668133d9170ede618cb4425d1--begin-compiling>"],"outputs":["<target-CNLiveIntegralModule-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8efe4e531668133d9170ede618cb4425d1--TestTargetPostprocessingTaskProducer>"]}
"Gate target-CNLiveIntegralModule-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8efe4e531668133d9170ede618cb4425d1--TestTargetTaskProducer": {"tool":"phony","inputs":["<target-CNLiveIntegralModule-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8efe4e531668133d9170ede618cb4425d1--HeadermapTaskProducer>","<target-CNLiveIntegralModule-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8efe4e531668133d9170ede618cb4425d1--begin-compiling>"],"outputs":["<target-CNLiveIntegralModule-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8efe4e531668133d9170ede618cb4425d1--TestTargetTaskProducer>"]}
"Gate target-CNLiveIntegralModule-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8efe4e531668133d9170ede618cb4425d1--VersionPlistTaskProducer": {"tool":"phony","inputs":["<target-CNLiveIntegralModule-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8efe4e531668133d9170ede618cb4425d1--HeadermapTaskProducer>","<target-CNLiveIntegralModule-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8efe4e531668133d9170ede618cb4425d1--begin-compiling>"],"outputs":["<target-CNLiveIntegralModule-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8efe4e531668133d9170ede618cb4425d1--VersionPlistTaskProducer>"]}
"Gate target-CNLiveIntegralModule-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8efe4e531668133d9170ede618cb4425d1--XCFrameworkTaskProducer": {"tool":"phony","inputs":["<target-CNLiveIntegralModule-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8efe4e531668133d9170ede618cb4425d1--ProductStructureTaskProducer>","<target-CNLiveIntegralModule-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8efe4e531668133d9170ede618cb4425d1--begin-compiling>"],"outputs":["<target-CNLiveIntegralModule-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8efe4e531668133d9170ede618cb4425d1--XCFrameworkTaskProducer>"]}
"Gate target-CNLiveIntegralModule-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8efe4e531668133d9170ede618cb4425d1--begin-compiling": {"tool":"phony","inputs":["<target-CNLiveIntegralModule-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8efe4e531668133d9170ede618cb4425d1-Debug-iphoneos-stale-file-removal>","<CreateBuildDirectory-/tmp/Pods.dst>","<CreateBuildDirectory-/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build>","<CreateBuildDirectory-/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build>"],"outputs":["<target-CNLiveIntegralModule-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8efe4e531668133d9170ede618cb4425d1--begin-compiling>"]}
"Gate target-CNLiveIntegralModule-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8efe4e531668133d9170ede618cb4425d1--end": {"tool":"phony","inputs":["<target-CNLiveIntegralModule-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8efe4e531668133d9170ede618cb4425d1--entry>","<target-CNLiveIntegralModule-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8efe4e531668133d9170ede618cb4425d1--Barrier-ChangeAlternatePermissions>","<target-CNLiveIntegralModule-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8efe4e531668133d9170ede618cb4425d1--Barrier-ChangePermissions>","<target-CNLiveIntegralModule-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8efe4e531668133d9170ede618cb4425d1--Barrier-CodeSign>","<target-CNLiveIntegralModule-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8efe4e531668133d9170ede618cb4425d1--Barrier-CopyAside>","<target-CNLiveIntegralModule-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8efe4e531668133d9170ede618cb4425d1--Barrier-RegisterExecutionPolicyException>","<target-CNLiveIntegralModule-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8efe4e531668133d9170ede618cb4425d1--Barrier-StripSymbols>","<target-CNLiveIntegralModule-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8efe4e531668133d9170ede618cb4425d1--Barrier-Validate>","<target-CNLiveIntegralModule-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8efe4e531668133d9170ede618cb4425d1--GeneratedFilesTaskProducer>","<target-CNLiveIntegralModule-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8efe4e531668133d9170ede618cb4425d1--HeadermapTaskProducer>","<target-CNLiveIntegralModule-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8efe4e531668133d9170ede618cb4425d1--InfoPlistTaskProducer>","<target-CNLiveIntegralModule-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8efe4e531668133d9170ede618cb4425d1--ModuleMapTaskProducer>","<target-CNLiveIntegralModule-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8efe4e531668133d9170ede618cb4425d1--ProductPostprocessingTaskProducer>","<target-CNLiveIntegralModule-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8efe4e531668133d9170ede618cb4425d1--ProductStructureTaskProducer>","<target-CNLiveIntegralModule-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8efe4e531668133d9170ede618cb4425d1--SanitizerTaskProducer>","<target-CNLiveIntegralModule-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8efe4e531668133d9170ede618cb4425d1--StubBinaryTaskProducer>","<target-CNLiveIntegralModule-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8efe4e531668133d9170ede618cb4425d1--SwiftStandardLibrariesTaskProducer>","<target-CNLiveIntegralModule-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8efe4e531668133d9170ede618cb4425d1--TestTargetPostprocessingTaskProducer>","<target-CNLiveIntegralModule-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8efe4e531668133d9170ede618cb4425d1--TestTargetTaskProducer>","<target-CNLiveIntegralModule-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8efe4e531668133d9170ede618cb4425d1--VersionPlistTaskProducer>","<target-CNLiveIntegralModule-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8efe4e531668133d9170ede618cb4425d1--XCFrameworkTaskProducer>","<target-CNLiveIntegralModule-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8efe4e531668133d9170ede618cb4425d1--generated-headers>","<target-CNLiveIntegralModule-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8efe4e531668133d9170ede618cb4425d1--phase0-compile-sources>","<target-CNLiveIntegralModule-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8efe4e531668133d9170ede618cb4425d1--phase2-copy-bundle-resources>","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/CNLiveIntegralModule.bundle/Assets.car","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/CNLiveIntegralModule.bundle/gold_whereabouts.mp3","<MkDir /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/CNLiveIntegralModule.bundle>","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/CNLiveIntegralModule.bundle/Info.plist","<Touch /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/CNLiveIntegralModule.bundle>","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule-CNLiveIntegralModule.build/CNLiveIntegralModule-all-non-framework-target-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule-CNLiveIntegralModule.build/CNLiveIntegralModule-all-target-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule-CNLiveIntegralModule.build/CNLiveIntegralModule-generated-files.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule-CNLiveIntegralModule.build/CNLiveIntegralModule-own-target-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule-CNLiveIntegralModule.build/CNLiveIntegralModule-project-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule-CNLiveIntegralModule.build/CNLiveIntegralModule.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule-CNLiveIntegralModule.build/all-product-headers.yaml"],"outputs":["<target-CNLiveIntegralModule-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8efe4e531668133d9170ede618cb4425d1--end>"]}
"Gate target-CNLiveIntegralModule-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8efe4e531668133d9170ede618cb4425d1--entry": {"tool":"phony","inputs":["<target-CNLiveIntegralModule-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8efe4e531668133d9170ede618cb4425d1-Debug-iphoneos-stale-file-removal>","<CreateBuildDirectory-/tmp/Pods.dst>","<CreateBuildDirectory-/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build>","<CreateBuildDirectory-/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build>","<target-CNLiveIntegralModule-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8efe4e531668133d9170ede618cb4425d1--begin-compiling>"],"outputs":["<target-CNLiveIntegralModule-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8efe4e531668133d9170ede618cb4425d1--entry>"]}
"Gate target-CNLiveIntegralModule-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8efe4e531668133d9170ede618cb4425d1--generated-headers": {"tool":"phony","inputs":["<target-CNLiveIntegralModule-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8efe4e531668133d9170ede618cb4425d1--begin-compiling>"],"outputs":["<target-CNLiveIntegralModule-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8efe4e531668133d9170ede618cb4425d1--generated-headers>"]}
"Gate target-CNLiveIntegralModule-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8efe4e531668133d9170ede618cb4425d1--immediate": {"tool":"phony","inputs":["<target-CNLiveIntegralModule-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8efe4e531668133d9170ede618cb4425d1-Debug-iphoneos-stale-file-removal>","<CreateBuildDirectory-/tmp/Pods.dst>","<CreateBuildDirectory-/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build>","<CreateBuildDirectory-/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build>"],"outputs":["<target-CNLiveIntegralModule-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8efe4e531668133d9170ede618cb4425d1--immediate>"]}
"Gate target-CNLiveIntegralModule-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8efe4e531668133d9170ede618cb4425d1--modules-ready": {"tool":"phony","inputs":["<target-CNLiveIntegralModule-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8efe4e531668133d9170ede618cb4425d1--begin-compiling>"],"outputs":["<target-CNLiveIntegralModule-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8efe4e531668133d9170ede618cb4425d1--modules-ready>"]}
"Gate target-CNLiveIntegralModule-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8efe4e531668133d9170ede618cb4425d1--phase0-compile-sources": {"tool":"phony","inputs":["<target-CNLiveIntegralModule-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8efe4e531668133d9170ede618cb4425d1--HeadermapTaskProducer>","<target-CNLiveIntegralModule-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8efe4e531668133d9170ede618cb4425d1--begin-compiling>"],"outputs":["<target-CNLiveIntegralModule-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8efe4e531668133d9170ede618cb4425d1--phase0-compile-sources>"]}
"Gate target-CNLiveIntegralModule-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8efe4e531668133d9170ede618cb4425d1--phase2-copy-bundle-resources": {"tool":"phony","inputs":["<target-CNLiveIntegralModule-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8efe4e531668133d9170ede618cb4425d1--phase0-compile-sources>","<target-CNLiveIntegralModule-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8efe4e531668133d9170ede618cb4425d1--begin-compiling>","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/CNLiveIntegralModule.bundle/Assets.car","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/CNLiveIntegralModule.bundle/gold_whereabouts.mp3"],"outputs":["<target-CNLiveIntegralModule-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8efe4e531668133d9170ede618cb4425d1--phase2-copy-bundle-resources>"]}
"Gate target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--Barrier-ChangeAlternatePermissions": {"tool":"phony","inputs":["<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--Barrier-ChangePermissions>","<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--begin-compiling>"],"outputs":["<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--Barrier-ChangeAlternatePermissions>"]}
"Gate target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--Barrier-ChangePermissions": {"tool":"phony","inputs":["<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--Barrier-StripSymbols>","<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--begin-compiling>"],"outputs":["<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--Barrier-ChangePermissions>"]}
"Gate target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--Barrier-CodeSign": {"tool":"phony","inputs":["<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--Barrier-ChangeAlternatePermissions>","<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--begin-compiling>"],"outputs":["<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--Barrier-CodeSign>"]}
"Gate target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--Barrier-CopyAside": {"tool":"phony","inputs":["<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--ProductPostprocessingTaskProducer>","<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--begin-compiling>"],"outputs":["<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--Barrier-CopyAside>"]}
"Gate target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--Barrier-RegisterExecutionPolicyException": {"tool":"phony","inputs":["<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--Barrier-CodeSign>","<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--begin-compiling>"],"outputs":["<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--Barrier-RegisterExecutionPolicyException>"]}
"Gate target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--Barrier-StripSymbols": {"tool":"phony","inputs":["<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--Barrier-CopyAside>","<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--begin-compiling>"],"outputs":["<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--Barrier-StripSymbols>"]}
"Gate target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--Barrier-Validate": {"tool":"phony","inputs":["<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--Barrier-RegisterExecutionPolicyException>","<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--begin-compiling>","<Touch /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit/CNLiveRequestBastKit.framework>"],"outputs":["<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--Barrier-Validate>"]}
"Gate target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--GeneratedFilesTaskProducer": {"tool":"phony","inputs":["<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--XCFrameworkTaskProducer>","<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--begin-compiling>"],"outputs":["<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--GeneratedFilesTaskProducer>"]}
"Gate target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--HeadermapTaskProducer": {"tool":"phony","inputs":["<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--GeneratedFilesTaskProducer>","<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--begin-compiling>","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/CNLiveRequestBastKit-all-non-framework-target-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/CNLiveRequestBastKit-all-target-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/CNLiveRequestBastKit-generated-files.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/CNLiveRequestBastKit-own-target-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/CNLiveRequestBastKit-project-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/CNLiveRequestBastKit.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/all-product-headers.yaml"],"outputs":["<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--HeadermapTaskProducer>"]}
"Gate target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--InfoPlistTaskProducer": {"tool":"phony","inputs":["<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--HeadermapTaskProducer>","<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--begin-compiling>","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit/CNLiveRequestBastKit.framework/Info.plist"],"outputs":["<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--InfoPlistTaskProducer>"]}
"Gate target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--ModuleMapTaskProducer": {"tool":"phony","inputs":["<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--HeadermapTaskProducer>","<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--begin-compiling>","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit/CNLiveRequestBastKit.framework/Modules/module.modulemap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/module.modulemap"],"outputs":["<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--ModuleMapTaskProducer>"]}
"Gate target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--ProductPostprocessingTaskProducer": {"tool":"phony","inputs":["<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--HeadermapTaskProducer>","<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--phase3-copy-bundle-resources>","<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--InfoPlistTaskProducer>","<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--VersionPlistTaskProducer>","<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--SanitizerTaskProducer>","<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--ModuleMapTaskProducer>","<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--SwiftStandardLibrariesTaskProducer>","<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--StubBinaryTaskProducer>","<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--TestTargetTaskProducer>","<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--begin-compiling>"],"outputs":["<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--ProductPostprocessingTaskProducer>"]}
"Gate target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--ProductStructureTaskProducer": {"tool":"phony","inputs":["<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--start>","<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--begin-compiling>","<MkDir /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit/CNLiveRequestBastKit.framework>","<MkDir /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit/CNLiveRequestBastKit.framework/Headers>"],"outputs":["<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--ProductStructureTaskProducer>"]}
"Gate target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--SanitizerTaskProducer": {"tool":"phony","inputs":["<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--HeadermapTaskProducer>","<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--begin-compiling>"],"outputs":["<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--SanitizerTaskProducer>"]}
"Gate target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--StubBinaryTaskProducer": {"tool":"phony","inputs":["<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--HeadermapTaskProducer>","<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--begin-compiling>"],"outputs":["<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--StubBinaryTaskProducer>"]}
"Gate target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--SwiftStandardLibrariesTaskProducer": {"tool":"phony","inputs":["<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--HeadermapTaskProducer>","<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--phase3-copy-bundle-resources>","<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--begin-compiling>"],"outputs":["<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--SwiftStandardLibrariesTaskProducer>"]}
"Gate target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--TestTargetPostprocessingTaskProducer": {"tool":"phony","inputs":["<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--ProductPostprocessingTaskProducer>","<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--begin-compiling>"],"outputs":["<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--TestTargetPostprocessingTaskProducer>"]}
"Gate target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--TestTargetTaskProducer": {"tool":"phony","inputs":["<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--HeadermapTaskProducer>","<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--begin-compiling>"],"outputs":["<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--TestTargetTaskProducer>"]}
"Gate target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--VersionPlistTaskProducer": {"tool":"phony","inputs":["<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--HeadermapTaskProducer>","<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--begin-compiling>"],"outputs":["<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--VersionPlistTaskProducer>"]}
"Gate target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--XCFrameworkTaskProducer": {"tool":"phony","inputs":["<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--ProductStructureTaskProducer>","<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--begin-compiling>"],"outputs":["<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--XCFrameworkTaskProducer>"]}
"Gate target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--begin-compiling": {"tool":"phony","inputs":["<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--modules-ready>","<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af-Debug-iphoneos-stale-file-removal>","<CreateBuildDirectory-/tmp/Pods.dst>","<CreateBuildDirectory-/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build>","<CreateBuildDirectory-/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build>"],"outputs":["<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--begin-compiling>"]}
"Gate target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--end": {"tool":"phony","inputs":["<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--entry>","<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--Barrier-ChangeAlternatePermissions>","<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--Barrier-ChangePermissions>","<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--Barrier-CodeSign>","<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--Barrier-CopyAside>","<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--Barrier-RegisterExecutionPolicyException>","<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--Barrier-StripSymbols>","<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--Barrier-Validate>","<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--GeneratedFilesTaskProducer>","<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--HeadermapTaskProducer>","<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--InfoPlistTaskProducer>","<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--ModuleMapTaskProducer>","<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--ProductPostprocessingTaskProducer>","<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--ProductStructureTaskProducer>","<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--SanitizerTaskProducer>","<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--StubBinaryTaskProducer>","<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--SwiftStandardLibrariesTaskProducer>","<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--TestTargetPostprocessingTaskProducer>","<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--TestTargetTaskProducer>","<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--VersionPlistTaskProducer>","<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--XCFrameworkTaskProducer>","<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--generated-headers>","<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--phase0-copy-headers>","<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--phase1-compile-sources>","<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--phase3-copy-bundle-resources>","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/arm64/CNLiveNetworkAgent.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/arm64/CNLiveNetworkBaseRequest.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/arm64/CNLiveNetworkConfig.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/arm64/CNLiveNetworkLogManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/arm64/CNLiveNetworkLogWebViewController.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/arm64/CNLiveNetworkPrivate.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/arm64/CNLiveNetworkRequest.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/arm64/CNLiveNetworkSessionManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/arm64/CNLiveNetworking.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/arm64/CNLiveRequestBastKit-dummy.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/arm64/CNLiveRequestBastKit_vers.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/armv7/CNLiveNetworkAgent.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/armv7/CNLiveNetworkBaseRequest.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/armv7/CNLiveNetworkConfig.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/armv7/CNLiveNetworkLogManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/armv7/CNLiveNetworkLogWebViewController.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/armv7/CNLiveNetworkPrivate.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/armv7/CNLiveNetworkRequest.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/armv7/CNLiveNetworkSessionManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/armv7/CNLiveNetworking.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/armv7/CNLiveRequestBastKit-dummy.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/armv7/CNLiveRequestBastKit_vers.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit/CNLiveRequestBastKit.framework/Headers/CNLiveNetworkAgent.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit/CNLiveRequestBastKit.framework/Headers/CNLiveNetworkBaseRequest.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit/CNLiveRequestBastKit.framework/Headers/CNLiveNetworkConfig.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit/CNLiveRequestBastKit.framework/Headers/CNLiveNetworkEnum.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit/CNLiveRequestBastKit.framework/Headers/CNLiveNetworkLogManager.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit/CNLiveRequestBastKit.framework/Headers/CNLiveNetworkLogWebViewController.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit/CNLiveRequestBastKit.framework/Headers/CNLiveNetworkPrivate.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit/CNLiveRequestBastKit.framework/Headers/CNLiveNetworkRequest.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit/CNLiveRequestBastKit.framework/Headers/CNLiveNetworkSessionManager.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit/CNLiveRequestBastKit.framework/Headers/CNLiveNetworking.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit/CNLiveRequestBastKit.framework/Headers/CNLiveRequestBastKit-umbrella.h","<Linked Binary /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit/CNLiveRequestBastKit.framework/CNLiveRequestBastKit>","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit/CNLiveRequestBastKit.framework/Modules/module.modulemap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/arm64/Binary/CNLiveRequestBastKit","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/armv7/Binary/CNLiveRequestBastKit","<MkDir /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit/CNLiveRequestBastKit.framework>","<MkDir /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit/CNLiveRequestBastKit.framework/Headers>","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit/CNLiveRequestBastKit.framework/Info.plist","<Touch /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit/CNLiveRequestBastKit.framework>","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/CNLiveRequestBastKit-all-non-framework-target-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/CNLiveRequestBastKit-all-target-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/CNLiveRequestBastKit-generated-files.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/CNLiveRequestBastKit-own-target-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/CNLiveRequestBastKit-project-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/CNLiveRequestBastKit.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/DerivedSources/CNLiveRequestBastKit_vers.c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/arm64/CNLiveRequestBastKit.LinkFileList","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/armv7/CNLiveRequestBastKit.LinkFileList","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/all-product-headers.yaml","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/module.modulemap"],"outputs":["<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--end>"]}
"Gate target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--entry": {"tool":"phony","inputs":["<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--end>","<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af-Debug-iphoneos-stale-file-removal>","<CreateBuildDirectory-/tmp/Pods.dst>","<CreateBuildDirectory-/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build>","<CreateBuildDirectory-/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build>","<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--begin-compiling>"],"outputs":["<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--entry>"]}
"Gate target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--generated-headers": {"tool":"phony","inputs":["<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--begin-compiling>"],"outputs":["<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--generated-headers>"]}
"Gate target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--immediate": {"tool":"phony","inputs":["<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af-Debug-iphoneos-stale-file-removal>","<CreateBuildDirectory-/tmp/Pods.dst>","<CreateBuildDirectory-/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build>","<CreateBuildDirectory-/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build>"],"outputs":["<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--immediate>"]}
"Gate target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--modules-ready": {"tool":"phony","inputs":["<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--begin-compiling>","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/arm64/CNLiveNetworkAgent.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/arm64/CNLiveNetworkBaseRequest.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/arm64/CNLiveNetworkConfig.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/arm64/CNLiveNetworkLogManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/arm64/CNLiveNetworkLogWebViewController.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/arm64/CNLiveNetworkPrivate.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/arm64/CNLiveNetworkRequest.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/arm64/CNLiveNetworkSessionManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/arm64/CNLiveNetworking.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/arm64/CNLiveRequestBastKit-dummy.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/arm64/CNLiveRequestBastKit_vers.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/armv7/CNLiveNetworkAgent.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/armv7/CNLiveNetworkBaseRequest.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/armv7/CNLiveNetworkConfig.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/armv7/CNLiveNetworkLogManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/armv7/CNLiveNetworkLogWebViewController.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/armv7/CNLiveNetworkPrivate.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/armv7/CNLiveNetworkRequest.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/armv7/CNLiveNetworkSessionManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/armv7/CNLiveNetworking.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/armv7/CNLiveRequestBastKit-dummy.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/armv7/CNLiveRequestBastKit_vers.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit/CNLiveRequestBastKit.framework/Headers/CNLiveNetworkAgent.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit/CNLiveRequestBastKit.framework/Headers/CNLiveNetworkBaseRequest.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit/CNLiveRequestBastKit.framework/Headers/CNLiveNetworkConfig.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit/CNLiveRequestBastKit.framework/Headers/CNLiveNetworkEnum.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit/CNLiveRequestBastKit.framework/Headers/CNLiveNetworkLogManager.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit/CNLiveRequestBastKit.framework/Headers/CNLiveNetworkLogWebViewController.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit/CNLiveRequestBastKit.framework/Headers/CNLiveNetworkPrivate.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit/CNLiveRequestBastKit.framework/Headers/CNLiveNetworkRequest.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit/CNLiveRequestBastKit.framework/Headers/CNLiveNetworkSessionManager.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit/CNLiveRequestBastKit.framework/Headers/CNLiveNetworking.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit/CNLiveRequestBastKit.framework/Headers/CNLiveRequestBastKit-umbrella.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/DerivedSources/CNLiveRequestBastKit_vers.c"],"outputs":["<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--modules-ready>"]}
"Gate target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--phase0-copy-headers": {"tool":"phony","inputs":["<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--HeadermapTaskProducer>","<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--begin-compiling>","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit/CNLiveRequestBastKit.framework/Headers/CNLiveNetworkAgent.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit/CNLiveRequestBastKit.framework/Headers/CNLiveNetworkBaseRequest.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit/CNLiveRequestBastKit.framework/Headers/CNLiveNetworkConfig.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit/CNLiveRequestBastKit.framework/Headers/CNLiveNetworkEnum.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit/CNLiveRequestBastKit.framework/Headers/CNLiveNetworkLogManager.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit/CNLiveRequestBastKit.framework/Headers/CNLiveNetworkLogWebViewController.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit/CNLiveRequestBastKit.framework/Headers/CNLiveNetworkPrivate.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit/CNLiveRequestBastKit.framework/Headers/CNLiveNetworkRequest.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit/CNLiveRequestBastKit.framework/Headers/CNLiveNetworkSessionManager.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit/CNLiveRequestBastKit.framework/Headers/CNLiveNetworking.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit/CNLiveRequestBastKit.framework/Headers/CNLiveRequestBastKit-umbrella.h"],"outputs":["<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--phase0-copy-headers>"]}
"Gate target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--phase1-compile-sources": {"tool":"phony","inputs":["<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--phase0-copy-headers>","<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--begin-compiling>","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/arm64/CNLiveNetworkAgent.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/arm64/CNLiveNetworkBaseRequest.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/arm64/CNLiveNetworkConfig.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/arm64/CNLiveNetworkLogManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/arm64/CNLiveNetworkLogWebViewController.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/arm64/CNLiveNetworkPrivate.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/arm64/CNLiveNetworkRequest.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/arm64/CNLiveNetworkSessionManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/arm64/CNLiveNetworking.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/arm64/CNLiveRequestBastKit-dummy.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/arm64/CNLiveRequestBastKit_vers.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/armv7/CNLiveNetworkAgent.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/armv7/CNLiveNetworkBaseRequest.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/armv7/CNLiveNetworkConfig.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/armv7/CNLiveNetworkLogManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/armv7/CNLiveNetworkLogWebViewController.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/armv7/CNLiveNetworkPrivate.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/armv7/CNLiveNetworkRequest.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/armv7/CNLiveNetworkSessionManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/armv7/CNLiveNetworking.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/armv7/CNLiveRequestBastKit-dummy.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/armv7/CNLiveRequestBastKit_vers.o","<Linked Binary /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit/CNLiveRequestBastKit.framework/CNLiveRequestBastKit>","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/arm64/Binary/CNLiveRequestBastKit","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/armv7/Binary/CNLiveRequestBastKit","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/DerivedSources/CNLiveRequestBastKit_vers.c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/arm64/CNLiveRequestBastKit.LinkFileList","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/armv7/CNLiveRequestBastKit.LinkFileList"],"outputs":["<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--phase1-compile-sources>"]}
"Gate target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--phase3-copy-bundle-resources": {"tool":"phony","inputs":["<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--phase1-compile-sources>","<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--begin-compiling>"],"outputs":["<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--phase3-copy-bundle-resources>"]}
"Gate target-CNLiveServices-285b96a559574e49fe0e1a40c03a5a8e91d5e9d88631ee0f0e480b2efaa1542a--begin-compiling": {"tool":"phony","inputs":["<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--modules-ready>","<target-CNLiveServices-285b96a559574e49fe0e1a40c03a5a8e91d5e9d88631ee0f0e480b2efaa1542a-Debug-iphoneos-stale-file-removal>"],"outputs":["<target-CNLiveServices-285b96a559574e49fe0e1a40c03a5a8e91d5e9d88631ee0f0e480b2efaa1542a--begin-compiling>"]}
"Gate target-CNLiveServices-285b96a559574e49fe0e1a40c03a5a8e91d5e9d88631ee0f0e480b2efaa1542a--end": {"tool":"phony","inputs":["<target-CNLiveServices-285b96a559574e49fe0e1a40c03a5a8e91d5e9d88631ee0f0e480b2efaa1542a--entry>"],"outputs":["<target-CNLiveServices-285b96a559574e49fe0e1a40c03a5a8e91d5e9d88631ee0f0e480b2efaa1542a--end>"]}
"Gate target-CNLiveServices-285b96a559574e49fe0e1a40c03a5a8e91d5e9d88631ee0f0e480b2efaa1542a--entry": {"tool":"phony","inputs":["<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--end>","<target-CNLiveServices-285b96a559574e49fe0e1a40c03a5a8e91d5e9d88631ee0f0e480b2efaa1542a-Debug-iphoneos-stale-file-removal>","<target-CNLiveServices-285b96a559574e49fe0e1a40c03a5a8e91d5e9d88631ee0f0e480b2efaa1542a--begin-compiling>"],"outputs":["<target-CNLiveServices-285b96a559574e49fe0e1a40c03a5a8e91d5e9d88631ee0f0e480b2efaa1542a--entry>"]}
"Gate target-CNLiveServices-285b96a559574e49fe0e1a40c03a5a8e91d5e9d88631ee0f0e480b2efaa1542a--immediate": {"tool":"phony","inputs":["<target-CNLiveServices-285b96a559574e49fe0e1a40c03a5a8e91d5e9d88631ee0f0e480b2efaa1542a-Debug-iphoneos-stale-file-removal>"],"outputs":["<target-CNLiveServices-285b96a559574e49fe0e1a40c03a5a8e91d5e9d88631ee0f0e480b2efaa1542a--immediate>"]}
"Gate target-CNLiveServices-285b96a559574e49fe0e1a40c03a5a8e91d5e9d88631ee0f0e480b2efaa1542a--modules-ready": {"tool":"phony","inputs":["<target-CNLiveServices-285b96a559574e49fe0e1a40c03a5a8e91d5e9d88631ee0f0e480b2efaa1542a--begin-compiling>"],"outputs":["<target-CNLiveServices-285b96a559574e49fe0e1a40c03a5a8e91d5e9d88631ee0f0e480b2efaa1542a--modules-ready>"]}
"Gate target-CNLiveTripartiteManagement-285b96a559574e49fe0e1a40c03a5a8ec69cdcecdf4ee3a594726fb547f0e760--Barrier-ChangeAlternatePermissions": {"tool":"phony","inputs":["<target-CNLiveTripartiteManagement-285b96a559574e49fe0e1a40c03a5a8ec69cdcecdf4ee3a594726fb547f0e760--Barrier-ChangePermissions>","<target-CNLiveTripartiteManagement-285b96a559574e49fe0e1a40c03a5a8ec69cdcecdf4ee3a594726fb547f0e760--begin-compiling>"],"outputs":["<target-CNLiveTripartiteManagement-285b96a559574e49fe0e1a40c03a5a8ec69cdcecdf4ee3a594726fb547f0e760--Barrier-ChangeAlternatePermissions>"]}
"Gate target-CNLiveTripartiteManagement-285b96a559574e49fe0e1a40c03a5a8ec69cdcecdf4ee3a594726fb547f0e760--Barrier-ChangePermissions": {"tool":"phony","inputs":["<target-CNLiveTripartiteManagement-285b96a559574e49fe0e1a40c03a5a8ec69cdcecdf4ee3a594726fb547f0e760--Barrier-StripSymbols>","<target-CNLiveTripartiteManagement-285b96a559574e49fe0e1a40c03a5a8ec69cdcecdf4ee3a594726fb547f0e760--begin-compiling>"],"outputs":["<target-CNLiveTripartiteManagement-285b96a559574e49fe0e1a40c03a5a8ec69cdcecdf4ee3a594726fb547f0e760--Barrier-ChangePermissions>"]}
"Gate target-CNLiveTripartiteManagement-285b96a559574e49fe0e1a40c03a5a8ec69cdcecdf4ee3a594726fb547f0e760--Barrier-CodeSign": {"tool":"phony","inputs":["<target-CNLiveTripartiteManagement-285b96a559574e49fe0e1a40c03a5a8ec69cdcecdf4ee3a594726fb547f0e760--Barrier-ChangeAlternatePermissions>","<target-CNLiveTripartiteManagement-285b96a559574e49fe0e1a40c03a5a8ec69cdcecdf4ee3a594726fb547f0e760--begin-compiling>"],"outputs":["<target-CNLiveTripartiteManagement-285b96a559574e49fe0e1a40c03a5a8ec69cdcecdf4ee3a594726fb547f0e760--Barrier-CodeSign>"]}
"Gate target-CNLiveTripartiteManagement-285b96a559574e49fe0e1a40c03a5a8ec69cdcecdf4ee3a594726fb547f0e760--Barrier-CopyAside": {"tool":"phony","inputs":["<target-CNLiveTripartiteManagement-285b96a559574e49fe0e1a40c03a5a8ec69cdcecdf4ee3a594726fb547f0e760--ProductPostprocessingTaskProducer>","<target-CNLiveTripartiteManagement-285b96a559574e49fe0e1a40c03a5a8ec69cdcecdf4ee3a594726fb547f0e760--begin-compiling>"],"outputs":["<target-CNLiveTripartiteManagement-285b96a559574e49fe0e1a40c03a5a8ec69cdcecdf4ee3a594726fb547f0e760--Barrier-CopyAside>"]}
"Gate target-CNLiveTripartiteManagement-285b96a559574e49fe0e1a40c03a5a8ec69cdcecdf4ee3a594726fb547f0e760--Barrier-RegisterExecutionPolicyException": {"tool":"phony","inputs":["<target-CNLiveTripartiteManagement-285b96a559574e49fe0e1a40c03a5a8ec69cdcecdf4ee3a594726fb547f0e760--Barrier-CodeSign>","<target-CNLiveTripartiteManagement-285b96a559574e49fe0e1a40c03a5a8ec69cdcecdf4ee3a594726fb547f0e760--begin-compiling>"],"outputs":["<target-CNLiveTripartiteManagement-285b96a559574e49fe0e1a40c03a5a8ec69cdcecdf4ee3a594726fb547f0e760--Barrier-RegisterExecutionPolicyException>"]}
"Gate target-CNLiveTripartiteManagement-285b96a559574e49fe0e1a40c03a5a8ec69cdcecdf4ee3a594726fb547f0e760--Barrier-StripSymbols": {"tool":"phony","inputs":["<target-CNLiveTripartiteManagement-285b96a559574e49fe0e1a40c03a5a8ec69cdcecdf4ee3a594726fb547f0e760--Barrier-CopyAside>","<target-CNLiveTripartiteManagement-285b96a559574e49fe0e1a40c03a5a8ec69cdcecdf4ee3a594726fb547f0e760--begin-compiling>"],"outputs":["<target-CNLiveTripartiteManagement-285b96a559574e49fe0e1a40c03a5a8ec69cdcecdf4ee3a594726fb547f0e760--Barrier-StripSymbols>"]}
"Gate target-CNLiveTripartiteManagement-285b96a559574e49fe0e1a40c03a5a8ec69cdcecdf4ee3a594726fb547f0e760--Barrier-Validate": {"tool":"phony","inputs":["<target-CNLiveTripartiteManagement-285b96a559574e49fe0e1a40c03a5a8ec69cdcecdf4ee3a594726fb547f0e760--Barrier-RegisterExecutionPolicyException>","<target-CNLiveTripartiteManagement-285b96a559574e49fe0e1a40c03a5a8ec69cdcecdf4ee3a594726fb547f0e760--begin-compiling>","<Touch /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveTripartiteManagement/CNLiveTripartiteManagement.framework>"],"outputs":["<target-CNLiveTripartiteManagement-285b96a559574e49fe0e1a40c03a5a8ec69cdcecdf4ee3a594726fb547f0e760--Barrier-Validate>"]}
"Gate target-CNLiveTripartiteManagement-285b96a559574e49fe0e1a40c03a5a8ec69cdcecdf4ee3a594726fb547f0e760--GeneratedFilesTaskProducer": {"tool":"phony","inputs":["<target-CNLiveTripartiteManagement-285b96a559574e49fe0e1a40c03a5a8ec69cdcecdf4ee3a594726fb547f0e760--XCFrameworkTaskProducer>","<target-CNLiveTripartiteManagement-285b96a559574e49fe0e1a40c03a5a8ec69cdcecdf4ee3a594726fb547f0e760--begin-compiling>"],"outputs":["<target-CNLiveTripartiteManagement-285b96a559574e49fe0e1a40c03a5a8ec69cdcecdf4ee3a594726fb547f0e760--GeneratedFilesTaskProducer>"]}
"Gate target-CNLiveTripartiteManagement-285b96a559574e49fe0e1a40c03a5a8ec69cdcecdf4ee3a594726fb547f0e760--HeadermapTaskProducer": {"tool":"phony","inputs":["<target-CNLiveTripartiteManagement-285b96a559574e49fe0e1a40c03a5a8ec69cdcecdf4ee3a594726fb547f0e760--GeneratedFilesTaskProducer>","<target-CNLiveTripartiteManagement-285b96a559574e49fe0e1a40c03a5a8ec69cdcecdf4ee3a594726fb547f0e760--begin-compiling>","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveTripartiteManagement.build/CNLiveTripartiteManagement-all-non-framework-target-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveTripartiteManagement.build/CNLiveTripartiteManagement-all-target-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveTripartiteManagement.build/CNLiveTripartiteManagement-generated-files.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveTripartiteManagement.build/CNLiveTripartiteManagement-own-target-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveTripartiteManagement.build/CNLiveTripartiteManagement-project-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveTripartiteManagement.build/CNLiveTripartiteManagement.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveTripartiteManagement.build/all-product-headers.yaml"],"outputs":["<target-CNLiveTripartiteManagement-285b96a559574e49fe0e1a40c03a5a8ec69cdcecdf4ee3a594726fb547f0e760--HeadermapTaskProducer>"]}
"Gate target-CNLiveTripartiteManagement-285b96a559574e49fe0e1a40c03a5a8ec69cdcecdf4ee3a594726fb547f0e760--InfoPlistTaskProducer": {"tool":"phony","inputs":["<target-CNLiveTripartiteManagement-285b96a559574e49fe0e1a40c03a5a8ec69cdcecdf4ee3a594726fb547f0e760--HeadermapTaskProducer>","<target-CNLiveTripartiteManagement-285b96a559574e49fe0e1a40c03a5a8ec69cdcecdf4ee3a594726fb547f0e760--begin-compiling>","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveTripartiteManagement/CNLiveTripartiteManagement.framework/Info.plist"],"outputs":["<target-CNLiveTripartiteManagement-285b96a559574e49fe0e1a40c03a5a8ec69cdcecdf4ee3a594726fb547f0e760--InfoPlistTaskProducer>"]}
"Gate target-CNLiveTripartiteManagement-285b96a559574e49fe0e1a40c03a5a8ec69cdcecdf4ee3a594726fb547f0e760--ModuleMapTaskProducer": {"tool":"phony","inputs":["<target-CNLiveTripartiteManagement-285b96a559574e49fe0e1a40c03a5a8ec69cdcecdf4ee3a594726fb547f0e760--HeadermapTaskProducer>","<target-CNLiveTripartiteManagement-285b96a559574e49fe0e1a40c03a5a8ec69cdcecdf4ee3a594726fb547f0e760--begin-compiling>","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveTripartiteManagement/CNLiveTripartiteManagement.framework/Modules/module.modulemap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveTripartiteManagement.build/module.modulemap"],"outputs":["<target-CNLiveTripartiteManagement-285b96a559574e49fe0e1a40c03a5a8ec69cdcecdf4ee3a594726fb547f0e760--ModuleMapTaskProducer>"]}
"Gate target-CNLiveTripartiteManagement-285b96a559574e49fe0e1a40c03a5a8ec69cdcecdf4ee3a594726fb547f0e760--ProductPostprocessingTaskProducer": {"tool":"phony","inputs":["<target-CNLiveTripartiteManagement-285b96a559574e49fe0e1a40c03a5a8ec69cdcecdf4ee3a594726fb547f0e760--HeadermapTaskProducer>","<target-CNLiveTripartiteManagement-285b96a559574e49fe0e1a40c03a5a8ec69cdcecdf4ee3a594726fb547f0e760--phase3-copy-bundle-resources>","<target-CNLiveTripartiteManagement-285b96a559574e49fe0e1a40c03a5a8ec69cdcecdf4ee3a594726fb547f0e760--InfoPlistTaskProducer>","<target-CNLiveTripartiteManagement-285b96a559574e49fe0e1a40c03a5a8ec69cdcecdf4ee3a594726fb547f0e760--VersionPlistTaskProducer>","<target-CNLiveTripartiteManagement-285b96a559574e49fe0e1a40c03a5a8ec69cdcecdf4ee3a594726fb547f0e760--SanitizerTaskProducer>","<target-CNLiveTripartiteManagement-285b96a559574e49fe0e1a40c03a5a8ec69cdcecdf4ee3a594726fb547f0e760--ModuleMapTaskProducer>","<target-CNLiveTripartiteManagement-285b96a559574e49fe0e1a40c03a5a8ec69cdcecdf4ee3a594726fb547f0e760--SwiftStandardLibrariesTaskProducer>","<target-CNLiveTripartiteManagement-285b96a559574e49fe0e1a40c03a5a8ec69cdcecdf4ee3a594726fb547f0e760--StubBinaryTaskProducer>","<target-CNLiveTripartiteManagement-285b96a559574e49fe0e1a40c03a5a8ec69cdcecdf4ee3a594726fb547f0e760--TestTargetTaskProducer>","<target-CNLiveTripartiteManagement-285b96a559574e49fe0e1a40c03a5a8ec69cdcecdf4ee3a594726fb547f0e760--begin-compiling>"],"outputs":["<target-CNLiveTripartiteManagement-285b96a559574e49fe0e1a40c03a5a8ec69cdcecdf4ee3a594726fb547f0e760--ProductPostprocessingTaskProducer>"]}
"Gate target-CNLiveTripartiteManagement-285b96a559574e49fe0e1a40c03a5a8ec69cdcecdf4ee3a594726fb547f0e760--ProductStructureTaskProducer": {"tool":"phony","inputs":["<target-CNLiveTripartiteManagement-285b96a559574e49fe0e1a40c03a5a8ec69cdcecdf4ee3a594726fb547f0e760--start>","<target-CNLiveTripartiteManagement-285b96a559574e49fe0e1a40c03a5a8ec69cdcecdf4ee3a594726fb547f0e760--begin-compiling>","<MkDir /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveTripartiteManagement/CNLiveTripartiteManagement.framework>","<MkDir /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveTripartiteManagement/CNLiveTripartiteManagement.framework/Headers>"],"outputs":["<target-CNLiveTripartiteManagement-285b96a559574e49fe0e1a40c03a5a8ec69cdcecdf4ee3a594726fb547f0e760--ProductStructureTaskProducer>"]}
"Gate target-CNLiveTripartiteManagement-285b96a559574e49fe0e1a40c03a5a8ec69cdcecdf4ee3a594726fb547f0e760--SanitizerTaskProducer": {"tool":"phony","inputs":["<target-CNLiveTripartiteManagement-285b96a559574e49fe0e1a40c03a5a8ec69cdcecdf4ee3a594726fb547f0e760--HeadermapTaskProducer>","<target-CNLiveTripartiteManagement-285b96a559574e49fe0e1a40c03a5a8ec69cdcecdf4ee3a594726fb547f0e760--begin-compiling>"],"outputs":["<target-CNLiveTripartiteManagement-285b96a559574e49fe0e1a40c03a5a8ec69cdcecdf4ee3a594726fb547f0e760--SanitizerTaskProducer>"]}
"Gate target-CNLiveTripartiteManagement-285b96a559574e49fe0e1a40c03a5a8ec69cdcecdf4ee3a594726fb547f0e760--StubBinaryTaskProducer": {"tool":"phony","inputs":["<target-CNLiveTripartiteManagement-285b96a559574e49fe0e1a40c03a5a8ec69cdcecdf4ee3a594726fb547f0e760--HeadermapTaskProducer>","<target-CNLiveTripartiteManagement-285b96a559574e49fe0e1a40c03a5a8ec69cdcecdf4ee3a594726fb547f0e760--begin-compiling>"],"outputs":["<target-CNLiveTripartiteManagement-285b96a559574e49fe0e1a40c03a5a8ec69cdcecdf4ee3a594726fb547f0e760--StubBinaryTaskProducer>"]}
"Gate target-CNLiveTripartiteManagement-285b96a559574e49fe0e1a40c03a5a8ec69cdcecdf4ee3a594726fb547f0e760--SwiftStandardLibrariesTaskProducer": {"tool":"phony","inputs":["<target-CNLiveTripartiteManagement-285b96a559574e49fe0e1a40c03a5a8ec69cdcecdf4ee3a594726fb547f0e760--HeadermapTaskProducer>","<target-CNLiveTripartiteManagement-285b96a559574e49fe0e1a40c03a5a8ec69cdcecdf4ee3a594726fb547f0e760--phase3-copy-bundle-resources>","<target-CNLiveTripartiteManagement-285b96a559574e49fe0e1a40c03a5a8ec69cdcecdf4ee3a594726fb547f0e760--begin-compiling>"],"outputs":["<target-CNLiveTripartiteManagement-285b96a559574e49fe0e1a40c03a5a8ec69cdcecdf4ee3a594726fb547f0e760--SwiftStandardLibrariesTaskProducer>"]}
"Gate target-CNLiveTripartiteManagement-285b96a559574e49fe0e1a40c03a5a8ec69cdcecdf4ee3a594726fb547f0e760--TestTargetPostprocessingTaskProducer": {"tool":"phony","inputs":["<target-CNLiveTripartiteManagement-285b96a559574e49fe0e1a40c03a5a8ec69cdcecdf4ee3a594726fb547f0e760--ProductPostprocessingTaskProducer>","<target-CNLiveTripartiteManagement-285b96a559574e49fe0e1a40c03a5a8ec69cdcecdf4ee3a594726fb547f0e760--begin-compiling>"],"outputs":["<target-CNLiveTripartiteManagement-285b96a559574e49fe0e1a40c03a5a8ec69cdcecdf4ee3a594726fb547f0e760--TestTargetPostprocessingTaskProducer>"]}
"Gate target-CNLiveTripartiteManagement-285b96a559574e49fe0e1a40c03a5a8ec69cdcecdf4ee3a594726fb547f0e760--TestTargetTaskProducer": {"tool":"phony","inputs":["<target-CNLiveTripartiteManagement-285b96a559574e49fe0e1a40c03a5a8ec69cdcecdf4ee3a594726fb547f0e760--HeadermapTaskProducer>","<target-CNLiveTripartiteManagement-285b96a559574e49fe0e1a40c03a5a8ec69cdcecdf4ee3a594726fb547f0e760--begin-compiling>"],"outputs":["<target-CNLiveTripartiteManagement-285b96a559574e49fe0e1a40c03a5a8ec69cdcecdf4ee3a594726fb547f0e760--TestTargetTaskProducer>"]}
"Gate target-CNLiveTripartiteManagement-285b96a559574e49fe0e1a40c03a5a8ec69cdcecdf4ee3a594726fb547f0e760--VersionPlistTaskProducer": {"tool":"phony","inputs":["<target-CNLiveTripartiteManagement-285b96a559574e49fe0e1a40c03a5a8ec69cdcecdf4ee3a594726fb547f0e760--HeadermapTaskProducer>","<target-CNLiveTripartiteManagement-285b96a559574e49fe0e1a40c03a5a8ec69cdcecdf4ee3a594726fb547f0e760--begin-compiling>"],"outputs":["<target-CNLiveTripartiteManagement-285b96a559574e49fe0e1a40c03a5a8ec69cdcecdf4ee3a594726fb547f0e760--VersionPlistTaskProducer>"]}
"Gate target-CNLiveTripartiteManagement-285b96a559574e49fe0e1a40c03a5a8ec69cdcecdf4ee3a594726fb547f0e760--XCFrameworkTaskProducer": {"tool":"phony","inputs":["<target-CNLiveTripartiteManagement-285b96a559574e49fe0e1a40c03a5a8ec69cdcecdf4ee3a594726fb547f0e760--ProductStructureTaskProducer>","<target-CNLiveTripartiteManagement-285b96a559574e49fe0e1a40c03a5a8ec69cdcecdf4ee3a594726fb547f0e760--begin-compiling>"],"outputs":["<target-CNLiveTripartiteManagement-285b96a559574e49fe0e1a40c03a5a8ec69cdcecdf4ee3a594726fb547f0e760--XCFrameworkTaskProducer>"]}
"Gate target-CNLiveTripartiteManagement-285b96a559574e49fe0e1a40c03a5a8ec69cdcecdf4ee3a594726fb547f0e760--begin-compiling": {"tool":"phony","inputs":["<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--modules-ready>","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--modules-ready>","<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--modules-ready>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--modules-ready>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--modules-ready>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--modules-ready>","<target-CNLiveTripartiteManagement-285b96a559574e49fe0e1a40c03a5a8ec69cdcecdf4ee3a594726fb547f0e760-Debug-iphoneos-stale-file-removal>","<CreateBuildDirectory-/tmp/Pods.dst>","<CreateBuildDirectory-/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build>","<CreateBuildDirectory-/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build>"],"outputs":["<target-CNLiveTripartiteManagement-285b96a559574e49fe0e1a40c03a5a8ec69cdcecdf4ee3a594726fb547f0e760--begin-compiling>"]}
"Gate target-CNLiveTripartiteManagement-285b96a559574e49fe0e1a40c03a5a8ec69cdcecdf4ee3a594726fb547f0e760--end": {"tool":"phony","inputs":["<target-CNLiveTripartiteManagement-285b96a559574e49fe0e1a40c03a5a8ec69cdcecdf4ee3a594726fb547f0e760--entry>","<target-CNLiveTripartiteManagement-285b96a559574e49fe0e1a40c03a5a8ec69cdcecdf4ee3a594726fb547f0e760--Barrier-ChangeAlternatePermissions>","<target-CNLiveTripartiteManagement-285b96a559574e49fe0e1a40c03a5a8ec69cdcecdf4ee3a594726fb547f0e760--Barrier-ChangePermissions>","<target-CNLiveTripartiteManagement-285b96a559574e49fe0e1a40c03a5a8ec69cdcecdf4ee3a594726fb547f0e760--Barrier-CodeSign>","<target-CNLiveTripartiteManagement-285b96a559574e49fe0e1a40c03a5a8ec69cdcecdf4ee3a594726fb547f0e760--Barrier-CopyAside>","<target-CNLiveTripartiteManagement-285b96a559574e49fe0e1a40c03a5a8ec69cdcecdf4ee3a594726fb547f0e760--Barrier-RegisterExecutionPolicyException>","<target-CNLiveTripartiteManagement-285b96a559574e49fe0e1a40c03a5a8ec69cdcecdf4ee3a594726fb547f0e760--Barrier-StripSymbols>","<target-CNLiveTripartiteManagement-285b96a559574e49fe0e1a40c03a5a8ec69cdcecdf4ee3a594726fb547f0e760--Barrier-Validate>","<target-CNLiveTripartiteManagement-285b96a559574e49fe0e1a40c03a5a8ec69cdcecdf4ee3a594726fb547f0e760--GeneratedFilesTaskProducer>","<target-CNLiveTripartiteManagement-285b96a559574e49fe0e1a40c03a5a8ec69cdcecdf4ee3a594726fb547f0e760--HeadermapTaskProducer>","<target-CNLiveTripartiteManagement-285b96a559574e49fe0e1a40c03a5a8ec69cdcecdf4ee3a594726fb547f0e760--InfoPlistTaskProducer>","<target-CNLiveTripartiteManagement-285b96a559574e49fe0e1a40c03a5a8ec69cdcecdf4ee3a594726fb547f0e760--ModuleMapTaskProducer>","<target-CNLiveTripartiteManagement-285b96a559574e49fe0e1a40c03a5a8ec69cdcecdf4ee3a594726fb547f0e760--ProductPostprocessingTaskProducer>","<target-CNLiveTripartiteManagement-285b96a559574e49fe0e1a40c03a5a8ec69cdcecdf4ee3a594726fb547f0e760--ProductStructureTaskProducer>","<target-CNLiveTripartiteManagement-285b96a559574e49fe0e1a40c03a5a8ec69cdcecdf4ee3a594726fb547f0e760--SanitizerTaskProducer>","<target-CNLiveTripartiteManagement-285b96a559574e49fe0e1a40c03a5a8ec69cdcecdf4ee3a594726fb547f0e760--StubBinaryTaskProducer>","<target-CNLiveTripartiteManagement-285b96a559574e49fe0e1a40c03a5a8ec69cdcecdf4ee3a594726fb547f0e760--SwiftStandardLibrariesTaskProducer>","<target-CNLiveTripartiteManagement-285b96a559574e49fe0e1a40c03a5a8ec69cdcecdf4ee3a594726fb547f0e760--TestTargetPostprocessingTaskProducer>","<target-CNLiveTripartiteManagement-285b96a559574e49fe0e1a40c03a5a8ec69cdcecdf4ee3a594726fb547f0e760--TestTargetTaskProducer>","<target-CNLiveTripartiteManagement-285b96a559574e49fe0e1a40c03a5a8ec69cdcecdf4ee3a594726fb547f0e760--VersionPlistTaskProducer>","<target-CNLiveTripartiteManagement-285b96a559574e49fe0e1a40c03a5a8ec69cdcecdf4ee3a594726fb547f0e760--XCFrameworkTaskProducer>","<target-CNLiveTripartiteManagement-285b96a559574e49fe0e1a40c03a5a8ec69cdcecdf4ee3a594726fb547f0e760--generated-headers>","<target-CNLiveTripartiteManagement-285b96a559574e49fe0e1a40c03a5a8ec69cdcecdf4ee3a594726fb547f0e760--phase0-copy-headers>","<target-CNLiveTripartiteManagement-285b96a559574e49fe0e1a40c03a5a8ec69cdcecdf4ee3a594726fb547f0e760--phase1-compile-sources>","<target-CNLiveTripartiteManagement-285b96a559574e49fe0e1a40c03a5a8ec69cdcecdf4ee3a594726fb547f0e760--phase3-copy-bundle-resources>","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveTripartiteManagement.build/Objects-normal/arm64/CNLiveTripartiteManagement-dummy.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveTripartiteManagement.build/Objects-normal/arm64/CNLiveTripartiteManagement_vers.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveTripartiteManagement.build/Objects-normal/armv7/CNLiveTripartiteManagement-dummy.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveTripartiteManagement.build/Objects-normal/armv7/CNLiveTripartiteManagement_vers.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveTripartiteManagement/CNLiveTripartiteManagement.framework/Headers/CNLiveTripartiteManagement-umbrella.h","<Linked Binary /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveTripartiteManagement/CNLiveTripartiteManagement.framework/CNLiveTripartiteManagement>","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveTripartiteManagement/CNLiveTripartiteManagement.framework/Modules/module.modulemap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveTripartiteManagement.build/Objects-normal/arm64/Binary/CNLiveTripartiteManagement","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveTripartiteManagement.build/Objects-normal/armv7/Binary/CNLiveTripartiteManagement","<MkDir /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveTripartiteManagement/CNLiveTripartiteManagement.framework>","<MkDir /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveTripartiteManagement/CNLiveTripartiteManagement.framework/Headers>","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveTripartiteManagement/CNLiveTripartiteManagement.framework/Info.plist","<Touch /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveTripartiteManagement/CNLiveTripartiteManagement.framework>","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveTripartiteManagement.build/CNLiveTripartiteManagement-all-non-framework-target-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveTripartiteManagement.build/CNLiveTripartiteManagement-all-target-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveTripartiteManagement.build/CNLiveTripartiteManagement-generated-files.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveTripartiteManagement.build/CNLiveTripartiteManagement-own-target-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveTripartiteManagement.build/CNLiveTripartiteManagement-project-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveTripartiteManagement.build/CNLiveTripartiteManagement.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveTripartiteManagement.build/DerivedSources/CNLiveTripartiteManagement_vers.c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveTripartiteManagement.build/Objects-normal/arm64/CNLiveTripartiteManagement.LinkFileList","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveTripartiteManagement.build/Objects-normal/armv7/CNLiveTripartiteManagement.LinkFileList","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveTripartiteManagement.build/all-product-headers.yaml","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveTripartiteManagement.build/module.modulemap"],"outputs":["<target-CNLiveTripartiteManagement-285b96a559574e49fe0e1a40c03a5a8ec69cdcecdf4ee3a594726fb547f0e760--end>"]}
"Gate target-CNLiveTripartiteManagement-285b96a559574e49fe0e1a40c03a5a8ec69cdcecdf4ee3a594726fb547f0e760--entry": {"tool":"phony","inputs":["<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--end>","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--end>","<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--end>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--end>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--end>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--end>","<target-CNLiveTripartiteManagement-285b96a559574e49fe0e1a40c03a5a8ec69cdcecdf4ee3a594726fb547f0e760-Debug-iphoneos-stale-file-removal>","<CreateBuildDirectory-/tmp/Pods.dst>","<CreateBuildDirectory-/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build>","<CreateBuildDirectory-/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build>","<target-CNLiveTripartiteManagement-285b96a559574e49fe0e1a40c03a5a8ec69cdcecdf4ee3a594726fb547f0e760--begin-compiling>"],"outputs":["<target-CNLiveTripartiteManagement-285b96a559574e49fe0e1a40c03a5a8ec69cdcecdf4ee3a594726fb547f0e760--entry>"]}
"Gate target-CNLiveTripartiteManagement-285b96a559574e49fe0e1a40c03a5a8ec69cdcecdf4ee3a594726fb547f0e760--generated-headers": {"tool":"phony","inputs":["<target-CNLiveTripartiteManagement-285b96a559574e49fe0e1a40c03a5a8ec69cdcecdf4ee3a594726fb547f0e760--begin-compiling>"],"outputs":["<target-CNLiveTripartiteManagement-285b96a559574e49fe0e1a40c03a5a8ec69cdcecdf4ee3a594726fb547f0e760--generated-headers>"]}
"Gate target-CNLiveTripartiteManagement-285b96a559574e49fe0e1a40c03a5a8ec69cdcecdf4ee3a594726fb547f0e760--immediate": {"tool":"phony","inputs":["<target-CNLiveTripartiteManagement-285b96a559574e49fe0e1a40c03a5a8ec69cdcecdf4ee3a594726fb547f0e760-Debug-iphoneos-stale-file-removal>","<CreateBuildDirectory-/tmp/Pods.dst>","<CreateBuildDirectory-/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build>","<CreateBuildDirectory-/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build>"],"outputs":["<target-CNLiveTripartiteManagement-285b96a559574e49fe0e1a40c03a5a8ec69cdcecdf4ee3a594726fb547f0e760--immediate>"]}
"Gate target-CNLiveTripartiteManagement-285b96a559574e49fe0e1a40c03a5a8ec69cdcecdf4ee3a594726fb547f0e760--modules-ready": {"tool":"phony","inputs":["<target-CNLiveTripartiteManagement-285b96a559574e49fe0e1a40c03a5a8ec69cdcecdf4ee3a594726fb547f0e760--begin-compiling>","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveTripartiteManagement.build/Objects-normal/arm64/CNLiveTripartiteManagement-dummy.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveTripartiteManagement.build/Objects-normal/arm64/CNLiveTripartiteManagement_vers.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveTripartiteManagement.build/Objects-normal/armv7/CNLiveTripartiteManagement-dummy.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveTripartiteManagement.build/Objects-normal/armv7/CNLiveTripartiteManagement_vers.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveTripartiteManagement/CNLiveTripartiteManagement.framework/Headers/CNLiveTripartiteManagement-umbrella.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveTripartiteManagement.build/DerivedSources/CNLiveTripartiteManagement_vers.c"],"outputs":["<target-CNLiveTripartiteManagement-285b96a559574e49fe0e1a40c03a5a8ec69cdcecdf4ee3a594726fb547f0e760--modules-ready>"]}
"Gate target-CNLiveTripartiteManagement-285b96a559574e49fe0e1a40c03a5a8ec69cdcecdf4ee3a594726fb547f0e760--phase0-copy-headers": {"tool":"phony","inputs":["<target-CNLiveTripartiteManagement-285b96a559574e49fe0e1a40c03a5a8ec69cdcecdf4ee3a594726fb547f0e760--HeadermapTaskProducer>","<target-CNLiveTripartiteManagement-285b96a559574e49fe0e1a40c03a5a8ec69cdcecdf4ee3a594726fb547f0e760--begin-compiling>","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveTripartiteManagement/CNLiveTripartiteManagement.framework/Headers/CNLiveTripartiteManagement-umbrella.h"],"outputs":["<target-CNLiveTripartiteManagement-285b96a559574e49fe0e1a40c03a5a8ec69cdcecdf4ee3a594726fb547f0e760--phase0-copy-headers>"]}
"Gate target-CNLiveTripartiteManagement-285b96a559574e49fe0e1a40c03a5a8ec69cdcecdf4ee3a594726fb547f0e760--phase1-compile-sources": {"tool":"phony","inputs":["<target-CNLiveTripartiteManagement-285b96a559574e49fe0e1a40c03a5a8ec69cdcecdf4ee3a594726fb547f0e760--phase0-copy-headers>","<target-CNLiveTripartiteManagement-285b96a559574e49fe0e1a40c03a5a8ec69cdcecdf4ee3a594726fb547f0e760--begin-compiling>","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveTripartiteManagement.build/Objects-normal/arm64/CNLiveTripartiteManagement-dummy.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveTripartiteManagement.build/Objects-normal/arm64/CNLiveTripartiteManagement_vers.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveTripartiteManagement.build/Objects-normal/armv7/CNLiveTripartiteManagement-dummy.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveTripartiteManagement.build/Objects-normal/armv7/CNLiveTripartiteManagement_vers.o","<Linked Binary /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveTripartiteManagement/CNLiveTripartiteManagement.framework/CNLiveTripartiteManagement>","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveTripartiteManagement.build/Objects-normal/arm64/Binary/CNLiveTripartiteManagement","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveTripartiteManagement.build/Objects-normal/armv7/Binary/CNLiveTripartiteManagement","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveTripartiteManagement.build/DerivedSources/CNLiveTripartiteManagement_vers.c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveTripartiteManagement.build/Objects-normal/arm64/CNLiveTripartiteManagement.LinkFileList","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveTripartiteManagement.build/Objects-normal/armv7/CNLiveTripartiteManagement.LinkFileList"],"outputs":["<target-CNLiveTripartiteManagement-285b96a559574e49fe0e1a40c03a5a8ec69cdcecdf4ee3a594726fb547f0e760--phase1-compile-sources>"]}
"Gate target-CNLiveTripartiteManagement-285b96a559574e49fe0e1a40c03a5a8ec69cdcecdf4ee3a594726fb547f0e760--phase3-copy-bundle-resources": {"tool":"phony","inputs":["<target-CNLiveTripartiteManagement-285b96a559574e49fe0e1a40c03a5a8ec69cdcecdf4ee3a594726fb547f0e760--phase1-compile-sources>","<target-CNLiveTripartiteManagement-285b96a559574e49fe0e1a40c03a5a8ec69cdcecdf4ee3a594726fb547f0e760--begin-compiling>"],"outputs":["<target-CNLiveTripartiteManagement-285b96a559574e49fe0e1a40c03a5a8ec69cdcecdf4ee3a594726fb547f0e760--phase3-copy-bundle-resources>"]}
"Gate target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4--Barrier-ChangeAlternatePermissions": {"tool":"phony","inputs":["<target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4--Barrier-ChangePermissions>","<target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4--begin-compiling>"],"outputs":["<target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4--Barrier-ChangeAlternatePermissions>"]}
"Gate target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4--Barrier-ChangePermissions": {"tool":"phony","inputs":["<target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4--Barrier-StripSymbols>","<target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4--begin-compiling>"],"outputs":["<target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4--Barrier-ChangePermissions>"]}
"Gate target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4--Barrier-CodeSign": {"tool":"phony","inputs":["<target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4--Barrier-ChangeAlternatePermissions>","<target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4--begin-compiling>"],"outputs":["<target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4--Barrier-CodeSign>"]}
"Gate target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4--Barrier-CopyAside": {"tool":"phony","inputs":["<target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4--ProductPostprocessingTaskProducer>","<target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4--begin-compiling>"],"outputs":["<target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4--Barrier-CopyAside>"]}
"Gate target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4--Barrier-RegisterExecutionPolicyException": {"tool":"phony","inputs":["<target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4--Barrier-CodeSign>","<target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4--begin-compiling>"],"outputs":["<target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4--Barrier-RegisterExecutionPolicyException>"]}
"Gate target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4--Barrier-StripSymbols": {"tool":"phony","inputs":["<target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4--Barrier-CopyAside>","<target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4--begin-compiling>"],"outputs":["<target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4--Barrier-StripSymbols>"]}
"Gate target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4--Barrier-Validate": {"tool":"phony","inputs":["<target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4--Barrier-RegisterExecutionPolicyException>","<target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4--begin-compiling>","<Touch /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserAgreementManager/CNLiveUserAgreementManager.framework>"],"outputs":["<target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4--Barrier-Validate>"]}
"Gate target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4--GeneratedFilesTaskProducer": {"tool":"phony","inputs":["<target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4--XCFrameworkTaskProducer>","<target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4--begin-compiling>"],"outputs":["<target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4--GeneratedFilesTaskProducer>"]}
"Gate target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4--HeadermapTaskProducer": {"tool":"phony","inputs":["<target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4--GeneratedFilesTaskProducer>","<target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4--begin-compiling>","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/CNLiveUserAgreementManager-all-non-framework-target-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/CNLiveUserAgreementManager-all-target-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/CNLiveUserAgreementManager-generated-files.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/CNLiveUserAgreementManager-own-target-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/CNLiveUserAgreementManager-project-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/CNLiveUserAgreementManager.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/all-product-headers.yaml"],"outputs":["<target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4--HeadermapTaskProducer>"]}
"Gate target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4--InfoPlistTaskProducer": {"tool":"phony","inputs":["<target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4--HeadermapTaskProducer>","<target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4--begin-compiling>","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserAgreementManager/CNLiveUserAgreementManager.framework/Info.plist"],"outputs":["<target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4--InfoPlistTaskProducer>"]}
"Gate target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4--ModuleMapTaskProducer": {"tool":"phony","inputs":["<target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4--HeadermapTaskProducer>","<target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4--begin-compiling>","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserAgreementManager/CNLiveUserAgreementManager.framework/Modules/module.modulemap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/module.modulemap"],"outputs":["<target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4--ModuleMapTaskProducer>"]}
"Gate target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4--ProductPostprocessingTaskProducer": {"tool":"phony","inputs":["<target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4--HeadermapTaskProducer>","<target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4--phase3-copy-bundle-resources>","<target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4--InfoPlistTaskProducer>","<target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4--VersionPlistTaskProducer>","<target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4--SanitizerTaskProducer>","<target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4--ModuleMapTaskProducer>","<target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4--SwiftStandardLibrariesTaskProducer>","<target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4--StubBinaryTaskProducer>","<target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4--TestTargetTaskProducer>","<target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4--begin-compiling>"],"outputs":["<target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4--ProductPostprocessingTaskProducer>"]}
"Gate target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4--ProductStructureTaskProducer": {"tool":"phony","inputs":["<target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4--start>","<target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4--begin-compiling>","<MkDir /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserAgreementManager/CNLiveUserAgreementManager.framework>","<MkDir /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserAgreementManager/CNLiveUserAgreementManager.framework/Headers>"],"outputs":["<target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4--ProductStructureTaskProducer>"]}
"Gate target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4--SanitizerTaskProducer": {"tool":"phony","inputs":["<target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4--HeadermapTaskProducer>","<target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4--begin-compiling>"],"outputs":["<target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4--SanitizerTaskProducer>"]}
"Gate target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4--StubBinaryTaskProducer": {"tool":"phony","inputs":["<target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4--HeadermapTaskProducer>","<target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4--begin-compiling>"],"outputs":["<target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4--StubBinaryTaskProducer>"]}
"Gate target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4--SwiftStandardLibrariesTaskProducer": {"tool":"phony","inputs":["<target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4--HeadermapTaskProducer>","<target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4--phase3-copy-bundle-resources>","<target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4--begin-compiling>"],"outputs":["<target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4--SwiftStandardLibrariesTaskProducer>"]}
"Gate target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4--TestTargetPostprocessingTaskProducer": {"tool":"phony","inputs":["<target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4--ProductPostprocessingTaskProducer>","<target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4--begin-compiling>"],"outputs":["<target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4--TestTargetPostprocessingTaskProducer>"]}
"Gate target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4--TestTargetTaskProducer": {"tool":"phony","inputs":["<target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4--HeadermapTaskProducer>","<target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4--begin-compiling>"],"outputs":["<target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4--TestTargetTaskProducer>"]}
"Gate target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4--VersionPlistTaskProducer": {"tool":"phony","inputs":["<target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4--HeadermapTaskProducer>","<target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4--begin-compiling>"],"outputs":["<target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4--VersionPlistTaskProducer>"]}
"Gate target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4--XCFrameworkTaskProducer": {"tool":"phony","inputs":["<target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4--ProductStructureTaskProducer>","<target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4--begin-compiling>"],"outputs":["<target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4--XCFrameworkTaskProducer>"]}
"Gate target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4--begin-compiling": {"tool":"phony","inputs":["<target-CNLiveEnvironment-285b96a559574e49fe0e1a40c03a5a8e61e9c7c4a29ad91844f8d551bbfe0deb--modules-ready>","<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--modules-ready>","<target-CNLiveUserAgreementManager-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ef20c2af33041468e717003000e83c9d2--modules-ready>","<target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4-Debug-iphoneos-stale-file-removal>","<CreateBuildDirectory-/tmp/Pods.dst>","<CreateBuildDirectory-/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build>","<CreateBuildDirectory-/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build>"],"outputs":["<target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4--begin-compiling>"]}
"Gate target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4--end": {"tool":"phony","inputs":["<target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4--entry>","<target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4--Barrier-ChangeAlternatePermissions>","<target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4--Barrier-ChangePermissions>","<target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4--Barrier-CodeSign>","<target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4--Barrier-CopyAside>","<target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4--Barrier-RegisterExecutionPolicyException>","<target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4--Barrier-StripSymbols>","<target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4--Barrier-Validate>","<target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4--GeneratedFilesTaskProducer>","<target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4--HeadermapTaskProducer>","<target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4--InfoPlistTaskProducer>","<target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4--ModuleMapTaskProducer>","<target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4--ProductPostprocessingTaskProducer>","<target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4--ProductStructureTaskProducer>","<target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4--SanitizerTaskProducer>","<target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4--StubBinaryTaskProducer>","<target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4--SwiftStandardLibrariesTaskProducer>","<target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4--TestTargetPostprocessingTaskProducer>","<target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4--TestTargetTaskProducer>","<target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4--VersionPlistTaskProducer>","<target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4--XCFrameworkTaskProducer>","<target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4--generated-headers>","<target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4--phase0-copy-headers>","<target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4--phase1-compile-sources>","<target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4--phase3-copy-bundle-resources>","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/Objects-normal/arm64/CNLiveUserAgreementManager-dummy.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/Objects-normal/arm64/CNLiveUserAgreementManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/Objects-normal/arm64/CNLiveUserAgreementManager_vers.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/Objects-normal/arm64/CNLiveUserAgreementWebController.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/Objects-normal/armv7/CNLiveUserAgreementManager-dummy.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/Objects-normal/armv7/CNLiveUserAgreementManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/Objects-normal/armv7/CNLiveUserAgreementManager_vers.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/Objects-normal/armv7/CNLiveUserAgreementWebController.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserAgreementManager/CNLiveUserAgreementManager.framework/Headers/CNLiveUserAgreementManager.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserAgreementManager/CNLiveUserAgreementManager.framework/Headers/CNLiveUserAgreementWebController.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserAgreementManager/CNLiveUserAgreementManager.framework/Headers/CNLiveUserAgreementManager-umbrella.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserAgreementManager/CNLiveUserAgreementManager.framework/CNLiveUserAgreementManager.bundle","<Linked Binary /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserAgreementManager/CNLiveUserAgreementManager.framework/CNLiveUserAgreementManager>","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserAgreementManager/CNLiveUserAgreementManager.framework/Modules/module.modulemap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/Objects-normal/arm64/Binary/CNLiveUserAgreementManager","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/Objects-normal/armv7/Binary/CNLiveUserAgreementManager","<MkDir /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserAgreementManager/CNLiveUserAgreementManager.framework>","<MkDir /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserAgreementManager/CNLiveUserAgreementManager.framework/Headers>","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserAgreementManager/CNLiveUserAgreementManager.framework/Info.plist","<Touch /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserAgreementManager/CNLiveUserAgreementManager.framework>","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/CNLiveUserAgreementManager-all-non-framework-target-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/CNLiveUserAgreementManager-all-target-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/CNLiveUserAgreementManager-generated-files.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/CNLiveUserAgreementManager-own-target-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/CNLiveUserAgreementManager-project-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/CNLiveUserAgreementManager.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/DerivedSources/CNLiveUserAgreementManager_vers.c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/Objects-normal/arm64/CNLiveUserAgreementManager.LinkFileList","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/Objects-normal/armv7/CNLiveUserAgreementManager.LinkFileList","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/all-product-headers.yaml","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/module.modulemap"],"outputs":["<target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4--end>"]}
"Gate target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4--entry": {"tool":"phony","inputs":["<target-CNLiveEnvironment-285b96a559574e49fe0e1a40c03a5a8e61e9c7c4a29ad91844f8d551bbfe0deb--end>","<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--end>","<target-CNLiveUserAgreementManager-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ef20c2af33041468e717003000e83c9d2--end>","<target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4-Debug-iphoneos-stale-file-removal>","<CreateBuildDirectory-/tmp/Pods.dst>","<CreateBuildDirectory-/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build>","<CreateBuildDirectory-/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build>","<target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4--begin-compiling>"],"outputs":["<target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4--entry>"]}
"Gate target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4--generated-headers": {"tool":"phony","inputs":["<target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4--begin-compiling>"],"outputs":["<target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4--generated-headers>"]}
"Gate target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4--immediate": {"tool":"phony","inputs":["<target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4-Debug-iphoneos-stale-file-removal>","<CreateBuildDirectory-/tmp/Pods.dst>","<CreateBuildDirectory-/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build>","<CreateBuildDirectory-/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build>"],"outputs":["<target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4--immediate>"]}
"Gate target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4--modules-ready": {"tool":"phony","inputs":["<target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4--begin-compiling>","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/Objects-normal/arm64/CNLiveUserAgreementManager-dummy.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/Objects-normal/arm64/CNLiveUserAgreementManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/Objects-normal/arm64/CNLiveUserAgreementManager_vers.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/Objects-normal/arm64/CNLiveUserAgreementWebController.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/Objects-normal/armv7/CNLiveUserAgreementManager-dummy.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/Objects-normal/armv7/CNLiveUserAgreementManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/Objects-normal/armv7/CNLiveUserAgreementManager_vers.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/Objects-normal/armv7/CNLiveUserAgreementWebController.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserAgreementManager/CNLiveUserAgreementManager.framework/Headers/CNLiveUserAgreementManager.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserAgreementManager/CNLiveUserAgreementManager.framework/Headers/CNLiveUserAgreementWebController.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserAgreementManager/CNLiveUserAgreementManager.framework/Headers/CNLiveUserAgreementManager-umbrella.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/DerivedSources/CNLiveUserAgreementManager_vers.c"],"outputs":["<target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4--modules-ready>"]}
"Gate target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4--phase0-copy-headers": {"tool":"phony","inputs":["<target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4--HeadermapTaskProducer>","<target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4--begin-compiling>","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserAgreementManager/CNLiveUserAgreementManager.framework/Headers/CNLiveUserAgreementManager.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserAgreementManager/CNLiveUserAgreementManager.framework/Headers/CNLiveUserAgreementWebController.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserAgreementManager/CNLiveUserAgreementManager.framework/Headers/CNLiveUserAgreementManager-umbrella.h"],"outputs":["<target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4--phase0-copy-headers>"]}
"Gate target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4--phase1-compile-sources": {"tool":"phony","inputs":["<target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4--phase0-copy-headers>","<target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4--begin-compiling>","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/Objects-normal/arm64/CNLiveUserAgreementManager-dummy.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/Objects-normal/arm64/CNLiveUserAgreementManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/Objects-normal/arm64/CNLiveUserAgreementManager_vers.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/Objects-normal/arm64/CNLiveUserAgreementWebController.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/Objects-normal/armv7/CNLiveUserAgreementManager-dummy.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/Objects-normal/armv7/CNLiveUserAgreementManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/Objects-normal/armv7/CNLiveUserAgreementManager_vers.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/Objects-normal/armv7/CNLiveUserAgreementWebController.o","<Linked Binary /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserAgreementManager/CNLiveUserAgreementManager.framework/CNLiveUserAgreementManager>","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/Objects-normal/arm64/Binary/CNLiveUserAgreementManager","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/Objects-normal/armv7/Binary/CNLiveUserAgreementManager","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/DerivedSources/CNLiveUserAgreementManager_vers.c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/Objects-normal/arm64/CNLiveUserAgreementManager.LinkFileList","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/Objects-normal/armv7/CNLiveUserAgreementManager.LinkFileList"],"outputs":["<target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4--phase1-compile-sources>"]}
"Gate target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4--phase3-copy-bundle-resources": {"tool":"phony","inputs":["<target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4--phase1-compile-sources>","<target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4--begin-compiling>","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserAgreementManager/CNLiveUserAgreementManager.framework/CNLiveUserAgreementManager.bundle"],"outputs":["<target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4--phase3-copy-bundle-resources>"]}
"Gate target-CNLiveUserAgreementManager-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ef20c2af33041468e717003000e83c9d2--Barrier-ChangeAlternatePermissions": {"tool":"phony","inputs":["<target-CNLiveUserAgreementManager-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ef20c2af33041468e717003000e83c9d2--Barrier-ChangePermissions>","<target-CNLiveUserAgreementManager-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ef20c2af33041468e717003000e83c9d2--begin-compiling>"],"outputs":["<target-CNLiveUserAgreementManager-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ef20c2af33041468e717003000e83c9d2--Barrier-ChangeAlternatePermissions>"]}
"Gate target-CNLiveUserAgreementManager-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ef20c2af33041468e717003000e83c9d2--Barrier-ChangePermissions": {"tool":"phony","inputs":["<target-CNLiveUserAgreementManager-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ef20c2af33041468e717003000e83c9d2--Barrier-StripSymbols>","<target-CNLiveUserAgreementManager-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ef20c2af33041468e717003000e83c9d2--begin-compiling>"],"outputs":["<target-CNLiveUserAgreementManager-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ef20c2af33041468e717003000e83c9d2--Barrier-ChangePermissions>"]}
"Gate target-CNLiveUserAgreementManager-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ef20c2af33041468e717003000e83c9d2--Barrier-CodeSign": {"tool":"phony","inputs":["<target-CNLiveUserAgreementManager-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ef20c2af33041468e717003000e83c9d2--Barrier-ChangeAlternatePermissions>","<target-CNLiveUserAgreementManager-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ef20c2af33041468e717003000e83c9d2--begin-compiling>"],"outputs":["<target-CNLiveUserAgreementManager-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ef20c2af33041468e717003000e83c9d2--Barrier-CodeSign>"]}
"Gate target-CNLiveUserAgreementManager-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ef20c2af33041468e717003000e83c9d2--Barrier-CopyAside": {"tool":"phony","inputs":["<target-CNLiveUserAgreementManager-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ef20c2af33041468e717003000e83c9d2--ProductPostprocessingTaskProducer>","<target-CNLiveUserAgreementManager-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ef20c2af33041468e717003000e83c9d2--begin-compiling>"],"outputs":["<target-CNLiveUserAgreementManager-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ef20c2af33041468e717003000e83c9d2--Barrier-CopyAside>"]}
"Gate target-CNLiveUserAgreementManager-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ef20c2af33041468e717003000e83c9d2--Barrier-RegisterExecutionPolicyException": {"tool":"phony","inputs":["<target-CNLiveUserAgreementManager-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ef20c2af33041468e717003000e83c9d2--Barrier-CodeSign>","<target-CNLiveUserAgreementManager-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ef20c2af33041468e717003000e83c9d2--begin-compiling>"],"outputs":["<target-CNLiveUserAgreementManager-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ef20c2af33041468e717003000e83c9d2--Barrier-RegisterExecutionPolicyException>"]}
"Gate target-CNLiveUserAgreementManager-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ef20c2af33041468e717003000e83c9d2--Barrier-StripSymbols": {"tool":"phony","inputs":["<target-CNLiveUserAgreementManager-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ef20c2af33041468e717003000e83c9d2--Barrier-CopyAside>","<target-CNLiveUserAgreementManager-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ef20c2af33041468e717003000e83c9d2--begin-compiling>"],"outputs":["<target-CNLiveUserAgreementManager-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ef20c2af33041468e717003000e83c9d2--Barrier-StripSymbols>"]}
"Gate target-CNLiveUserAgreementManager-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ef20c2af33041468e717003000e83c9d2--Barrier-Validate": {"tool":"phony","inputs":["<target-CNLiveUserAgreementManager-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ef20c2af33041468e717003000e83c9d2--Barrier-RegisterExecutionPolicyException>","<target-CNLiveUserAgreementManager-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ef20c2af33041468e717003000e83c9d2--begin-compiling>","<Touch /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserAgreementManager/CNLiveUserAgreementManager.bundle>"],"outputs":["<target-CNLiveUserAgreementManager-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ef20c2af33041468e717003000e83c9d2--Barrier-Validate>"]}
"Gate target-CNLiveUserAgreementManager-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ef20c2af33041468e717003000e83c9d2--GeneratedFilesTaskProducer": {"tool":"phony","inputs":["<target-CNLiveUserAgreementManager-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ef20c2af33041468e717003000e83c9d2--XCFrameworkTaskProducer>","<target-CNLiveUserAgreementManager-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ef20c2af33041468e717003000e83c9d2--begin-compiling>"],"outputs":["<target-CNLiveUserAgreementManager-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ef20c2af33041468e717003000e83c9d2--GeneratedFilesTaskProducer>"]}
"Gate target-CNLiveUserAgreementManager-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ef20c2af33041468e717003000e83c9d2--HeadermapTaskProducer": {"tool":"phony","inputs":["<target-CNLiveUserAgreementManager-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ef20c2af33041468e717003000e83c9d2--GeneratedFilesTaskProducer>","<target-CNLiveUserAgreementManager-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ef20c2af33041468e717003000e83c9d2--begin-compiling>","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager-CNLiveUserAgreementManager.build/CNLiveUserAgreementManager-all-non-framework-target-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager-CNLiveUserAgreementManager.build/CNLiveUserAgreementManager-all-target-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager-CNLiveUserAgreementManager.build/CNLiveUserAgreementManager-generated-files.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager-CNLiveUserAgreementManager.build/CNLiveUserAgreementManager-own-target-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager-CNLiveUserAgreementManager.build/CNLiveUserAgreementManager-project-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager-CNLiveUserAgreementManager.build/CNLiveUserAgreementManager.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager-CNLiveUserAgreementManager.build/all-product-headers.yaml"],"outputs":["<target-CNLiveUserAgreementManager-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ef20c2af33041468e717003000e83c9d2--HeadermapTaskProducer>"]}
"Gate target-CNLiveUserAgreementManager-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ef20c2af33041468e717003000e83c9d2--InfoPlistTaskProducer": {"tool":"phony","inputs":["<target-CNLiveUserAgreementManager-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ef20c2af33041468e717003000e83c9d2--HeadermapTaskProducer>","<target-CNLiveUserAgreementManager-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ef20c2af33041468e717003000e83c9d2--begin-compiling>","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserAgreementManager/CNLiveUserAgreementManager.bundle/Info.plist"],"outputs":["<target-CNLiveUserAgreementManager-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ef20c2af33041468e717003000e83c9d2--InfoPlistTaskProducer>"]}
"Gate target-CNLiveUserAgreementManager-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ef20c2af33041468e717003000e83c9d2--ModuleMapTaskProducer": {"tool":"phony","inputs":["<target-CNLiveUserAgreementManager-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ef20c2af33041468e717003000e83c9d2--HeadermapTaskProducer>","<target-CNLiveUserAgreementManager-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ef20c2af33041468e717003000e83c9d2--begin-compiling>"],"outputs":["<target-CNLiveUserAgreementManager-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ef20c2af33041468e717003000e83c9d2--ModuleMapTaskProducer>"]}
"Gate target-CNLiveUserAgreementManager-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ef20c2af33041468e717003000e83c9d2--ProductPostprocessingTaskProducer": {"tool":"phony","inputs":["<target-CNLiveUserAgreementManager-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ef20c2af33041468e717003000e83c9d2--HeadermapTaskProducer>","<target-CNLiveUserAgreementManager-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ef20c2af33041468e717003000e83c9d2--phase2-copy-bundle-resources>","<target-CNLiveUserAgreementManager-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ef20c2af33041468e717003000e83c9d2--InfoPlistTaskProducer>","<target-CNLiveUserAgreementManager-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ef20c2af33041468e717003000e83c9d2--VersionPlistTaskProducer>","<target-CNLiveUserAgreementManager-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ef20c2af33041468e717003000e83c9d2--SanitizerTaskProducer>","<target-CNLiveUserAgreementManager-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ef20c2af33041468e717003000e83c9d2--ModuleMapTaskProducer>","<target-CNLiveUserAgreementManager-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ef20c2af33041468e717003000e83c9d2--SwiftStandardLibrariesTaskProducer>","<target-CNLiveUserAgreementManager-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ef20c2af33041468e717003000e83c9d2--StubBinaryTaskProducer>","<target-CNLiveUserAgreementManager-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ef20c2af33041468e717003000e83c9d2--TestTargetTaskProducer>","<target-CNLiveUserAgreementManager-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ef20c2af33041468e717003000e83c9d2--begin-compiling>"],"outputs":["<target-CNLiveUserAgreementManager-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ef20c2af33041468e717003000e83c9d2--ProductPostprocessingTaskProducer>"]}
"Gate target-CNLiveUserAgreementManager-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ef20c2af33041468e717003000e83c9d2--ProductStructureTaskProducer": {"tool":"phony","inputs":["<target-CNLiveUserAgreementManager-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ef20c2af33041468e717003000e83c9d2--start>","<target-CNLiveUserAgreementManager-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ef20c2af33041468e717003000e83c9d2--begin-compiling>","<MkDir /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserAgreementManager/CNLiveUserAgreementManager.bundle>"],"outputs":["<target-CNLiveUserAgreementManager-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ef20c2af33041468e717003000e83c9d2--ProductStructureTaskProducer>"]}
"Gate target-CNLiveUserAgreementManager-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ef20c2af33041468e717003000e83c9d2--SanitizerTaskProducer": {"tool":"phony","inputs":["<target-CNLiveUserAgreementManager-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ef20c2af33041468e717003000e83c9d2--HeadermapTaskProducer>","<target-CNLiveUserAgreementManager-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ef20c2af33041468e717003000e83c9d2--begin-compiling>"],"outputs":["<target-CNLiveUserAgreementManager-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ef20c2af33041468e717003000e83c9d2--SanitizerTaskProducer>"]}
"Gate target-CNLiveUserAgreementManager-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ef20c2af33041468e717003000e83c9d2--StubBinaryTaskProducer": {"tool":"phony","inputs":["<target-CNLiveUserAgreementManager-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ef20c2af33041468e717003000e83c9d2--HeadermapTaskProducer>","<target-CNLiveUserAgreementManager-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ef20c2af33041468e717003000e83c9d2--begin-compiling>"],"outputs":["<target-CNLiveUserAgreementManager-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ef20c2af33041468e717003000e83c9d2--StubBinaryTaskProducer>"]}
"Gate target-CNLiveUserAgreementManager-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ef20c2af33041468e717003000e83c9d2--SwiftStandardLibrariesTaskProducer": {"tool":"phony","inputs":["<target-CNLiveUserAgreementManager-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ef20c2af33041468e717003000e83c9d2--HeadermapTaskProducer>","<target-CNLiveUserAgreementManager-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ef20c2af33041468e717003000e83c9d2--phase2-copy-bundle-resources>","<target-CNLiveUserAgreementManager-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ef20c2af33041468e717003000e83c9d2--begin-compiling>"],"outputs":["<target-CNLiveUserAgreementManager-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ef20c2af33041468e717003000e83c9d2--SwiftStandardLibrariesTaskProducer>"]}
"Gate target-CNLiveUserAgreementManager-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ef20c2af33041468e717003000e83c9d2--TestTargetPostprocessingTaskProducer": {"tool":"phony","inputs":["<target-CNLiveUserAgreementManager-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ef20c2af33041468e717003000e83c9d2--ProductPostprocessingTaskProducer>","<target-CNLiveUserAgreementManager-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ef20c2af33041468e717003000e83c9d2--begin-compiling>"],"outputs":["<target-CNLiveUserAgreementManager-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ef20c2af33041468e717003000e83c9d2--TestTargetPostprocessingTaskProducer>"]}
"Gate target-CNLiveUserAgreementManager-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ef20c2af33041468e717003000e83c9d2--TestTargetTaskProducer": {"tool":"phony","inputs":["<target-CNLiveUserAgreementManager-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ef20c2af33041468e717003000e83c9d2--HeadermapTaskProducer>","<target-CNLiveUserAgreementManager-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ef20c2af33041468e717003000e83c9d2--begin-compiling>"],"outputs":["<target-CNLiveUserAgreementManager-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ef20c2af33041468e717003000e83c9d2--TestTargetTaskProducer>"]}
"Gate target-CNLiveUserAgreementManager-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ef20c2af33041468e717003000e83c9d2--VersionPlistTaskProducer": {"tool":"phony","inputs":["<target-CNLiveUserAgreementManager-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ef20c2af33041468e717003000e83c9d2--HeadermapTaskProducer>","<target-CNLiveUserAgreementManager-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ef20c2af33041468e717003000e83c9d2--begin-compiling>"],"outputs":["<target-CNLiveUserAgreementManager-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ef20c2af33041468e717003000e83c9d2--VersionPlistTaskProducer>"]}
"Gate target-CNLiveUserAgreementManager-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ef20c2af33041468e717003000e83c9d2--XCFrameworkTaskProducer": {"tool":"phony","inputs":["<target-CNLiveUserAgreementManager-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ef20c2af33041468e717003000e83c9d2--ProductStructureTaskProducer>","<target-CNLiveUserAgreementManager-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ef20c2af33041468e717003000e83c9d2--begin-compiling>"],"outputs":["<target-CNLiveUserAgreementManager-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ef20c2af33041468e717003000e83c9d2--XCFrameworkTaskProducer>"]}
"Gate target-CNLiveUserAgreementManager-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ef20c2af33041468e717003000e83c9d2--begin-compiling": {"tool":"phony","inputs":["<target-CNLiveUserAgreementManager-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ef20c2af33041468e717003000e83c9d2-Debug-iphoneos-stale-file-removal>","<CreateBuildDirectory-/tmp/Pods.dst>","<CreateBuildDirectory-/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build>","<CreateBuildDirectory-/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build>"],"outputs":["<target-CNLiveUserAgreementManager-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ef20c2af33041468e717003000e83c9d2--begin-compiling>"]}
"Gate target-CNLiveUserAgreementManager-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ef20c2af33041468e717003000e83c9d2--end": {"tool":"phony","inputs":["<target-CNLiveUserAgreementManager-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ef20c2af33041468e717003000e83c9d2--entry>","<target-CNLiveUserAgreementManager-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ef20c2af33041468e717003000e83c9d2--Barrier-ChangeAlternatePermissions>","<target-CNLiveUserAgreementManager-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ef20c2af33041468e717003000e83c9d2--Barrier-ChangePermissions>","<target-CNLiveUserAgreementManager-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ef20c2af33041468e717003000e83c9d2--Barrier-CodeSign>","<target-CNLiveUserAgreementManager-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ef20c2af33041468e717003000e83c9d2--Barrier-CopyAside>","<target-CNLiveUserAgreementManager-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ef20c2af33041468e717003000e83c9d2--Barrier-RegisterExecutionPolicyException>","<target-CNLiveUserAgreementManager-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ef20c2af33041468e717003000e83c9d2--Barrier-StripSymbols>","<target-CNLiveUserAgreementManager-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ef20c2af33041468e717003000e83c9d2--Barrier-Validate>","<target-CNLiveUserAgreementManager-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ef20c2af33041468e717003000e83c9d2--GeneratedFilesTaskProducer>","<target-CNLiveUserAgreementManager-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ef20c2af33041468e717003000e83c9d2--HeadermapTaskProducer>","<target-CNLiveUserAgreementManager-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ef20c2af33041468e717003000e83c9d2--InfoPlistTaskProducer>","<target-CNLiveUserAgreementManager-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ef20c2af33041468e717003000e83c9d2--ModuleMapTaskProducer>","<target-CNLiveUserAgreementManager-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ef20c2af33041468e717003000e83c9d2--ProductPostprocessingTaskProducer>","<target-CNLiveUserAgreementManager-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ef20c2af33041468e717003000e83c9d2--ProductStructureTaskProducer>","<target-CNLiveUserAgreementManager-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ef20c2af33041468e717003000e83c9d2--SanitizerTaskProducer>","<target-CNLiveUserAgreementManager-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ef20c2af33041468e717003000e83c9d2--StubBinaryTaskProducer>","<target-CNLiveUserAgreementManager-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ef20c2af33041468e717003000e83c9d2--SwiftStandardLibrariesTaskProducer>","<target-CNLiveUserAgreementManager-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ef20c2af33041468e717003000e83c9d2--TestTargetPostprocessingTaskProducer>","<target-CNLiveUserAgreementManager-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ef20c2af33041468e717003000e83c9d2--TestTargetTaskProducer>","<target-CNLiveUserAgreementManager-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ef20c2af33041468e717003000e83c9d2--VersionPlistTaskProducer>","<target-CNLiveUserAgreementManager-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ef20c2af33041468e717003000e83c9d2--XCFrameworkTaskProducer>","<target-CNLiveUserAgreementManager-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ef20c2af33041468e717003000e83c9d2--generated-headers>","<target-CNLiveUserAgreementManager-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ef20c2af33041468e717003000e83c9d2--phase0-compile-sources>","<target-CNLiveUserAgreementManager-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ef20c2af33041468e717003000e83c9d2--phase2-copy-bundle-resources>","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserAgreementManager/CNLiveUserAgreementManager.bundle/Assets.car","<MkDir /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserAgreementManager/CNLiveUserAgreementManager.bundle>","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserAgreementManager/CNLiveUserAgreementManager.bundle/Info.plist","<Touch /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserAgreementManager/CNLiveUserAgreementManager.bundle>","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager-CNLiveUserAgreementManager.build/CNLiveUserAgreementManager-all-non-framework-target-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager-CNLiveUserAgreementManager.build/CNLiveUserAgreementManager-all-target-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager-CNLiveUserAgreementManager.build/CNLiveUserAgreementManager-generated-files.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager-CNLiveUserAgreementManager.build/CNLiveUserAgreementManager-own-target-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager-CNLiveUserAgreementManager.build/CNLiveUserAgreementManager-project-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager-CNLiveUserAgreementManager.build/CNLiveUserAgreementManager.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager-CNLiveUserAgreementManager.build/all-product-headers.yaml"],"outputs":["<target-CNLiveUserAgreementManager-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ef20c2af33041468e717003000e83c9d2--end>"]}
"Gate target-CNLiveUserAgreementManager-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ef20c2af33041468e717003000e83c9d2--entry": {"tool":"phony","inputs":["<target-CNLiveUserAgreementManager-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ef20c2af33041468e717003000e83c9d2-Debug-iphoneos-stale-file-removal>","<CreateBuildDirectory-/tmp/Pods.dst>","<CreateBuildDirectory-/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build>","<CreateBuildDirectory-/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build>","<target-CNLiveUserAgreementManager-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ef20c2af33041468e717003000e83c9d2--begin-compiling>"],"outputs":["<target-CNLiveUserAgreementManager-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ef20c2af33041468e717003000e83c9d2--entry>"]}
"Gate target-CNLiveUserAgreementManager-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ef20c2af33041468e717003000e83c9d2--generated-headers": {"tool":"phony","inputs":["<target-CNLiveUserAgreementManager-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ef20c2af33041468e717003000e83c9d2--begin-compiling>"],"outputs":["<target-CNLiveUserAgreementManager-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ef20c2af33041468e717003000e83c9d2--generated-headers>"]}
"Gate target-CNLiveUserAgreementManager-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ef20c2af33041468e717003000e83c9d2--immediate": {"tool":"phony","inputs":["<target-CNLiveUserAgreementManager-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ef20c2af33041468e717003000e83c9d2-Debug-iphoneos-stale-file-removal>","<CreateBuildDirectory-/tmp/Pods.dst>","<CreateBuildDirectory-/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build>","<CreateBuildDirectory-/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build>"],"outputs":["<target-CNLiveUserAgreementManager-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ef20c2af33041468e717003000e83c9d2--immediate>"]}
"Gate target-CNLiveUserAgreementManager-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ef20c2af33041468e717003000e83c9d2--modules-ready": {"tool":"phony","inputs":["<target-CNLiveUserAgreementManager-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ef20c2af33041468e717003000e83c9d2--begin-compiling>"],"outputs":["<target-CNLiveUserAgreementManager-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ef20c2af33041468e717003000e83c9d2--modules-ready>"]}
"Gate target-CNLiveUserAgreementManager-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ef20c2af33041468e717003000e83c9d2--phase0-compile-sources": {"tool":"phony","inputs":["<target-CNLiveUserAgreementManager-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ef20c2af33041468e717003000e83c9d2--HeadermapTaskProducer>","<target-CNLiveUserAgreementManager-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ef20c2af33041468e717003000e83c9d2--begin-compiling>"],"outputs":["<target-CNLiveUserAgreementManager-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ef20c2af33041468e717003000e83c9d2--phase0-compile-sources>"]}
"Gate target-CNLiveUserAgreementManager-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ef20c2af33041468e717003000e83c9d2--phase2-copy-bundle-resources": {"tool":"phony","inputs":["<target-CNLiveUserAgreementManager-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ef20c2af33041468e717003000e83c9d2--phase0-compile-sources>","<target-CNLiveUserAgreementManager-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ef20c2af33041468e717003000e83c9d2--begin-compiling>","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserAgreementManager/CNLiveUserAgreementManager.bundle/Assets.car"],"outputs":["<target-CNLiveUserAgreementManager-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ef20c2af33041468e717003000e83c9d2--phase2-copy-bundle-resources>"]}
"Gate target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea--Barrier-ChangeAlternatePermissions": {"tool":"phony","inputs":["<target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea--Barrier-ChangePermissions>","<target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea--begin-compiling>"],"outputs":["<target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea--Barrier-ChangeAlternatePermissions>"]}
"Gate target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea--Barrier-ChangePermissions": {"tool":"phony","inputs":["<target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea--Barrier-StripSymbols>","<target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea--begin-compiling>"],"outputs":["<target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea--Barrier-ChangePermissions>"]}
"Gate target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea--Barrier-CodeSign": {"tool":"phony","inputs":["<target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea--Barrier-ChangeAlternatePermissions>","<target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea--begin-compiling>"],"outputs":["<target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea--Barrier-CodeSign>"]}
"Gate target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea--Barrier-CopyAside": {"tool":"phony","inputs":["<target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea--ProductPostprocessingTaskProducer>","<target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea--begin-compiling>"],"outputs":["<target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea--Barrier-CopyAside>"]}
"Gate target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea--Barrier-RegisterExecutionPolicyException": {"tool":"phony","inputs":["<target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea--Barrier-CodeSign>","<target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea--begin-compiling>"],"outputs":["<target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea--Barrier-RegisterExecutionPolicyException>"]}
"Gate target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea--Barrier-StripSymbols": {"tool":"phony","inputs":["<target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea--Barrier-CopyAside>","<target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea--begin-compiling>"],"outputs":["<target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea--Barrier-StripSymbols>"]}
"Gate target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea--Barrier-Validate": {"tool":"phony","inputs":["<target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea--Barrier-RegisterExecutionPolicyException>","<target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea--begin-compiling>","<Touch /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserManagement/CNLiveUserManagement.framework>"],"outputs":["<target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea--Barrier-Validate>"]}
"Gate target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea--GeneratedFilesTaskProducer": {"tool":"phony","inputs":["<target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea--XCFrameworkTaskProducer>","<target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea--begin-compiling>"],"outputs":["<target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea--GeneratedFilesTaskProducer>"]}
"Gate target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea--HeadermapTaskProducer": {"tool":"phony","inputs":["<target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea--GeneratedFilesTaskProducer>","<target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea--begin-compiling>","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/CNLiveUserManagement-all-non-framework-target-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/CNLiveUserManagement-all-target-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/CNLiveUserManagement-generated-files.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/CNLiveUserManagement-own-target-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/CNLiveUserManagement-project-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/CNLiveUserManagement.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/all-product-headers.yaml"],"outputs":["<target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea--HeadermapTaskProducer>"]}
"Gate target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea--InfoPlistTaskProducer": {"tool":"phony","inputs":["<target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea--HeadermapTaskProducer>","<target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea--begin-compiling>","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserManagement/CNLiveUserManagement.framework/Info.plist"],"outputs":["<target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea--InfoPlistTaskProducer>"]}
"Gate target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea--ModuleMapTaskProducer": {"tool":"phony","inputs":["<target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea--HeadermapTaskProducer>","<target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea--begin-compiling>","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserManagement/CNLiveUserManagement.framework/Modules/module.modulemap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/module.modulemap"],"outputs":["<target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea--ModuleMapTaskProducer>"]}
"Gate target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea--ProductPostprocessingTaskProducer": {"tool":"phony","inputs":["<target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea--HeadermapTaskProducer>","<target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea--phase3-copy-bundle-resources>","<target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea--InfoPlistTaskProducer>","<target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea--VersionPlistTaskProducer>","<target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea--SanitizerTaskProducer>","<target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea--ModuleMapTaskProducer>","<target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea--SwiftStandardLibrariesTaskProducer>","<target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea--StubBinaryTaskProducer>","<target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea--TestTargetTaskProducer>","<target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea--begin-compiling>"],"outputs":["<target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea--ProductPostprocessingTaskProducer>"]}
"Gate target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea--ProductStructureTaskProducer": {"tool":"phony","inputs":["<target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea--start>","<target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea--begin-compiling>","<MkDir /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserManagement/CNLiveUserManagement.framework>","<MkDir /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserManagement/CNLiveUserManagement.framework/Headers>"],"outputs":["<target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea--ProductStructureTaskProducer>"]}
"Gate target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea--SanitizerTaskProducer": {"tool":"phony","inputs":["<target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea--HeadermapTaskProducer>","<target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea--begin-compiling>"],"outputs":["<target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea--SanitizerTaskProducer>"]}
"Gate target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea--StubBinaryTaskProducer": {"tool":"phony","inputs":["<target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea--HeadermapTaskProducer>","<target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea--begin-compiling>"],"outputs":["<target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea--StubBinaryTaskProducer>"]}
"Gate target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea--SwiftStandardLibrariesTaskProducer": {"tool":"phony","inputs":["<target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea--HeadermapTaskProducer>","<target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea--phase3-copy-bundle-resources>","<target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea--begin-compiling>"],"outputs":["<target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea--SwiftStandardLibrariesTaskProducer>"]}
"Gate target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea--TestTargetPostprocessingTaskProducer": {"tool":"phony","inputs":["<target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea--ProductPostprocessingTaskProducer>","<target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea--begin-compiling>"],"outputs":["<target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea--TestTargetPostprocessingTaskProducer>"]}
"Gate target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea--TestTargetTaskProducer": {"tool":"phony","inputs":["<target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea--HeadermapTaskProducer>","<target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea--begin-compiling>"],"outputs":["<target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea--TestTargetTaskProducer>"]}
"Gate target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea--VersionPlistTaskProducer": {"tool":"phony","inputs":["<target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea--HeadermapTaskProducer>","<target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea--begin-compiling>"],"outputs":["<target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea--VersionPlistTaskProducer>"]}
"Gate target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea--XCFrameworkTaskProducer": {"tool":"phony","inputs":["<target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea--ProductStructureTaskProducer>","<target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea--begin-compiling>"],"outputs":["<target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea--XCFrameworkTaskProducer>"]}
"Gate target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea--begin-compiling": {"tool":"phony","inputs":["<target-CNLiveTripartiteManagement-285b96a559574e49fe0e1a40c03a5a8ec69cdcecdf4ee3a594726fb547f0e760--modules-ready>","<target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea-Debug-iphoneos-stale-file-removal>","<CreateBuildDirectory-/tmp/Pods.dst>","<CreateBuildDirectory-/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build>","<CreateBuildDirectory-/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build>"],"outputs":["<target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea--begin-compiling>"]}
"Gate target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea--end": {"tool":"phony","inputs":["<target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea--entry>","<target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea--Barrier-ChangeAlternatePermissions>","<target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea--Barrier-ChangePermissions>","<target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea--Barrier-CodeSign>","<target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea--Barrier-CopyAside>","<target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea--Barrier-RegisterExecutionPolicyException>","<target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea--Barrier-StripSymbols>","<target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea--Barrier-Validate>","<target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea--GeneratedFilesTaskProducer>","<target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea--HeadermapTaskProducer>","<target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea--InfoPlistTaskProducer>","<target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea--ModuleMapTaskProducer>","<target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea--ProductPostprocessingTaskProducer>","<target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea--ProductStructureTaskProducer>","<target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea--SanitizerTaskProducer>","<target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea--StubBinaryTaskProducer>","<target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea--SwiftStandardLibrariesTaskProducer>","<target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea--TestTargetPostprocessingTaskProducer>","<target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea--TestTargetTaskProducer>","<target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea--VersionPlistTaskProducer>","<target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea--XCFrameworkTaskProducer>","<target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea--generated-headers>","<target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea--phase0-copy-headers>","<target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea--phase1-compile-sources>","<target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea--phase3-copy-bundle-resources>","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/Objects-normal/arm64/CNLiveUserManagement-dummy.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/Objects-normal/arm64/CNLiveUserManagement_vers.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/Objects-normal/arm64/CNUserInfoManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/Objects-normal/arm64/CNUserInfoModel.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/Objects-normal/armv7/CNLiveUserManagement-dummy.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/Objects-normal/armv7/CNLiveUserManagement_vers.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/Objects-normal/armv7/CNUserInfoManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/Objects-normal/armv7/CNUserInfoModel.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserManagement/CNLiveUserManagement.framework/Headers/CNUserInfoManager.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserManagement/CNLiveUserManagement.framework/Headers/CNUserInfoModel.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserManagement/CNLiveUserManagement.framework/Headers/CNLiveUserManagement-umbrella.h","<Linked Binary /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserManagement/CNLiveUserManagement.framework/CNLiveUserManagement>","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserManagement/CNLiveUserManagement.framework/Modules/module.modulemap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/Objects-normal/arm64/Binary/CNLiveUserManagement","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/Objects-normal/armv7/Binary/CNLiveUserManagement","<MkDir /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserManagement/CNLiveUserManagement.framework>","<MkDir /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserManagement/CNLiveUserManagement.framework/Headers>","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserManagement/CNLiveUserManagement.framework/Info.plist","<Touch /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserManagement/CNLiveUserManagement.framework>","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/CNLiveUserManagement-all-non-framework-target-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/CNLiveUserManagement-all-target-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/CNLiveUserManagement-generated-files.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/CNLiveUserManagement-own-target-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/CNLiveUserManagement-project-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/CNLiveUserManagement.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/DerivedSources/CNLiveUserManagement_vers.c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/Objects-normal/arm64/CNLiveUserManagement.LinkFileList","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/Objects-normal/armv7/CNLiveUserManagement.LinkFileList","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/all-product-headers.yaml","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/module.modulemap"],"outputs":["<target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea--end>"]}
"Gate target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea--entry": {"tool":"phony","inputs":["<target-CNLiveTripartiteManagement-285b96a559574e49fe0e1a40c03a5a8ec69cdcecdf4ee3a594726fb547f0e760--end>","<target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea-Debug-iphoneos-stale-file-removal>","<CreateBuildDirectory-/tmp/Pods.dst>","<CreateBuildDirectory-/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build>","<CreateBuildDirectory-/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build>","<target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea--begin-compiling>"],"outputs":["<target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea--entry>"]}
"Gate target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea--generated-headers": {"tool":"phony","inputs":["<target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea--begin-compiling>"],"outputs":["<target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea--generated-headers>"]}
"Gate target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea--immediate": {"tool":"phony","inputs":["<target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea-Debug-iphoneos-stale-file-removal>","<CreateBuildDirectory-/tmp/Pods.dst>","<CreateBuildDirectory-/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build>","<CreateBuildDirectory-/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build>"],"outputs":["<target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea--immediate>"]}
"Gate target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea--modules-ready": {"tool":"phony","inputs":["<target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea--begin-compiling>","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/Objects-normal/arm64/CNLiveUserManagement-dummy.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/Objects-normal/arm64/CNLiveUserManagement_vers.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/Objects-normal/arm64/CNUserInfoManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/Objects-normal/arm64/CNUserInfoModel.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/Objects-normal/armv7/CNLiveUserManagement-dummy.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/Objects-normal/armv7/CNLiveUserManagement_vers.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/Objects-normal/armv7/CNUserInfoManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/Objects-normal/armv7/CNUserInfoModel.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserManagement/CNLiveUserManagement.framework/Headers/CNUserInfoManager.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserManagement/CNLiveUserManagement.framework/Headers/CNUserInfoModel.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserManagement/CNLiveUserManagement.framework/Headers/CNLiveUserManagement-umbrella.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/DerivedSources/CNLiveUserManagement_vers.c"],"outputs":["<target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea--modules-ready>"]}
"Gate target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea--phase0-copy-headers": {"tool":"phony","inputs":["<target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea--HeadermapTaskProducer>","<target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea--begin-compiling>","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserManagement/CNLiveUserManagement.framework/Headers/CNUserInfoManager.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserManagement/CNLiveUserManagement.framework/Headers/CNUserInfoModel.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserManagement/CNLiveUserManagement.framework/Headers/CNLiveUserManagement-umbrella.h"],"outputs":["<target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea--phase0-copy-headers>"]}
"Gate target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea--phase1-compile-sources": {"tool":"phony","inputs":["<target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea--phase0-copy-headers>","<target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea--begin-compiling>","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/Objects-normal/arm64/CNLiveUserManagement-dummy.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/Objects-normal/arm64/CNLiveUserManagement_vers.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/Objects-normal/arm64/CNUserInfoManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/Objects-normal/arm64/CNUserInfoModel.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/Objects-normal/armv7/CNLiveUserManagement-dummy.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/Objects-normal/armv7/CNLiveUserManagement_vers.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/Objects-normal/armv7/CNUserInfoManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/Objects-normal/armv7/CNUserInfoModel.o","<Linked Binary /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserManagement/CNLiveUserManagement.framework/CNLiveUserManagement>","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/Objects-normal/arm64/Binary/CNLiveUserManagement","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/Objects-normal/armv7/Binary/CNLiveUserManagement","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/DerivedSources/CNLiveUserManagement_vers.c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/Objects-normal/arm64/CNLiveUserManagement.LinkFileList","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/Objects-normal/armv7/CNLiveUserManagement.LinkFileList"],"outputs":["<target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea--phase1-compile-sources>"]}
"Gate target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea--phase3-copy-bundle-resources": {"tool":"phony","inputs":["<target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea--phase1-compile-sources>","<target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea--begin-compiling>"],"outputs":["<target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea--phase3-copy-bundle-resources>"]}
"Gate target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--Barrier-ChangeAlternatePermissions": {"tool":"phony","inputs":["<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--Barrier-ChangePermissions>","<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--begin-compiling>"],"outputs":["<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--Barrier-ChangeAlternatePermissions>"]}
"Gate target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--Barrier-ChangePermissions": {"tool":"phony","inputs":["<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--Barrier-StripSymbols>","<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--begin-compiling>"],"outputs":["<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--Barrier-ChangePermissions>"]}
"Gate target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--Barrier-CodeSign": {"tool":"phony","inputs":["<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--Barrier-ChangeAlternatePermissions>","<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--begin-compiling>"],"outputs":["<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--Barrier-CodeSign>"]}
"Gate target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--Barrier-CopyAside": {"tool":"phony","inputs":["<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--ProductPostprocessingTaskProducer>","<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--begin-compiling>"],"outputs":["<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--Barrier-CopyAside>"]}
"Gate target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--Barrier-RegisterExecutionPolicyException": {"tool":"phony","inputs":["<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--Barrier-CodeSign>","<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--begin-compiling>"],"outputs":["<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--Barrier-RegisterExecutionPolicyException>"]}
"Gate target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--Barrier-StripSymbols": {"tool":"phony","inputs":["<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--Barrier-CopyAside>","<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--begin-compiling>"],"outputs":["<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--Barrier-StripSymbols>"]}
"Gate target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--Barrier-Validate": {"tool":"phony","inputs":["<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--Barrier-RegisterExecutionPolicyException>","<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--begin-compiling>","<Touch /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension/MJExtension.framework>"],"outputs":["<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--Barrier-Validate>"]}
"Gate target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--GeneratedFilesTaskProducer": {"tool":"phony","inputs":["<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--XCFrameworkTaskProducer>","<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--begin-compiling>"],"outputs":["<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--GeneratedFilesTaskProducer>"]}
"Gate target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--HeadermapTaskProducer": {"tool":"phony","inputs":["<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--GeneratedFilesTaskProducer>","<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--begin-compiling>","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/MJExtension-all-non-framework-target-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/MJExtension-all-target-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/MJExtension-generated-files.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/MJExtension-own-target-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/MJExtension-project-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/MJExtension.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/all-product-headers.yaml"],"outputs":["<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--HeadermapTaskProducer>"]}
"Gate target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--InfoPlistTaskProducer": {"tool":"phony","inputs":["<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--HeadermapTaskProducer>","<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--begin-compiling>","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension/MJExtension.framework/Info.plist"],"outputs":["<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--InfoPlistTaskProducer>"]}
"Gate target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--ModuleMapTaskProducer": {"tool":"phony","inputs":["<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--HeadermapTaskProducer>","<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--begin-compiling>","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension/MJExtension.framework/Modules/module.modulemap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/module.modulemap"],"outputs":["<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--ModuleMapTaskProducer>"]}
"Gate target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--ProductPostprocessingTaskProducer": {"tool":"phony","inputs":["<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--HeadermapTaskProducer>","<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--phase3-copy-bundle-resources>","<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--InfoPlistTaskProducer>","<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--VersionPlistTaskProducer>","<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--SanitizerTaskProducer>","<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--ModuleMapTaskProducer>","<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--SwiftStandardLibrariesTaskProducer>","<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--StubBinaryTaskProducer>","<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--TestTargetTaskProducer>","<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--begin-compiling>"],"outputs":["<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--ProductPostprocessingTaskProducer>"]}
"Gate target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--ProductStructureTaskProducer": {"tool":"phony","inputs":["<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--start>","<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--begin-compiling>","<MkDir /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension/MJExtension.framework>","<MkDir /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension/MJExtension.framework/Headers>"],"outputs":["<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--ProductStructureTaskProducer>"]}
"Gate target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--SanitizerTaskProducer": {"tool":"phony","inputs":["<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--HeadermapTaskProducer>","<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--begin-compiling>"],"outputs":["<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--SanitizerTaskProducer>"]}
"Gate target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--StubBinaryTaskProducer": {"tool":"phony","inputs":["<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--HeadermapTaskProducer>","<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--begin-compiling>"],"outputs":["<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--StubBinaryTaskProducer>"]}
"Gate target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--SwiftStandardLibrariesTaskProducer": {"tool":"phony","inputs":["<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--HeadermapTaskProducer>","<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--phase3-copy-bundle-resources>","<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--begin-compiling>"],"outputs":["<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--SwiftStandardLibrariesTaskProducer>"]}
"Gate target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--TestTargetPostprocessingTaskProducer": {"tool":"phony","inputs":["<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--ProductPostprocessingTaskProducer>","<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--begin-compiling>"],"outputs":["<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--TestTargetPostprocessingTaskProducer>"]}
"Gate target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--TestTargetTaskProducer": {"tool":"phony","inputs":["<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--HeadermapTaskProducer>","<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--begin-compiling>"],"outputs":["<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--TestTargetTaskProducer>"]}
"Gate target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--VersionPlistTaskProducer": {"tool":"phony","inputs":["<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--HeadermapTaskProducer>","<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--begin-compiling>"],"outputs":["<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--VersionPlistTaskProducer>"]}
"Gate target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--XCFrameworkTaskProducer": {"tool":"phony","inputs":["<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--ProductStructureTaskProducer>","<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--begin-compiling>"],"outputs":["<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--XCFrameworkTaskProducer>"]}
"Gate target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--begin-compiling": {"tool":"phony","inputs":["<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643-Debug-iphoneos-stale-file-removal>","<CreateBuildDirectory-/tmp/Pods.dst>","<CreateBuildDirectory-/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build>","<CreateBuildDirectory-/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build>"],"outputs":["<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--begin-compiling>"]}
"Gate target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--end": {"tool":"phony","inputs":["<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--entry>","<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--Barrier-ChangeAlternatePermissions>","<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--Barrier-ChangePermissions>","<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--Barrier-CodeSign>","<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--Barrier-CopyAside>","<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--Barrier-RegisterExecutionPolicyException>","<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--Barrier-StripSymbols>","<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--Barrier-Validate>","<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--GeneratedFilesTaskProducer>","<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--HeadermapTaskProducer>","<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--InfoPlistTaskProducer>","<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--ModuleMapTaskProducer>","<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--ProductPostprocessingTaskProducer>","<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--ProductStructureTaskProducer>","<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--SanitizerTaskProducer>","<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--StubBinaryTaskProducer>","<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--SwiftStandardLibrariesTaskProducer>","<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--TestTargetPostprocessingTaskProducer>","<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--TestTargetTaskProducer>","<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--VersionPlistTaskProducer>","<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--XCFrameworkTaskProducer>","<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--generated-headers>","<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--phase0-copy-headers>","<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--phase1-compile-sources>","<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--phase3-copy-bundle-resources>","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/arm64/MJExtension-dummy.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/arm64/MJExtensionConst.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/arm64/MJExtension_vers.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/arm64/MJFoundation.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/arm64/MJProperty.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/arm64/MJPropertyKey.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/arm64/MJPropertyType.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/arm64/NSObject+MJClass.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/arm64/NSObject+MJCoding.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/arm64/NSObject+MJKeyValue.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/arm64/NSObject+MJProperty.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/arm64/NSString+MJExtension.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/armv7/MJExtension-dummy.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/armv7/MJExtensionConst.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/armv7/MJExtension_vers.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/armv7/MJFoundation.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/armv7/MJProperty.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/armv7/MJPropertyKey.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/armv7/MJPropertyType.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/armv7/NSObject+MJClass.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/armv7/NSObject+MJCoding.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/armv7/NSObject+MJKeyValue.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/armv7/NSObject+MJProperty.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/armv7/NSString+MJExtension.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension/MJExtension.framework/Headers/MJExtension.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension/MJExtension.framework/Headers/MJExtensionConst.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension/MJExtension.framework/Headers/MJFoundation.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension/MJExtension.framework/Headers/MJProperty.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension/MJExtension.framework/Headers/MJPropertyKey.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension/MJExtension.framework/Headers/MJPropertyType.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension/MJExtension.framework/Headers/NSObject+MJClass.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension/MJExtension.framework/Headers/NSObject+MJCoding.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension/MJExtension.framework/Headers/NSObject+MJKeyValue.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension/MJExtension.framework/Headers/NSObject+MJProperty.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension/MJExtension.framework/Headers/NSString+MJExtension.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension/MJExtension.framework/Headers/MJExtension-umbrella.h","<Linked Binary /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension/MJExtension.framework/MJExtension>","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension/MJExtension.framework/Modules/module.modulemap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/arm64/Binary/MJExtension","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/armv7/Binary/MJExtension","<MkDir /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension/MJExtension.framework>","<MkDir /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension/MJExtension.framework/Headers>","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension/MJExtension.framework/Info.plist","<Touch /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension/MJExtension.framework>","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/DerivedSources/MJExtension_vers.c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/MJExtension-all-non-framework-target-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/MJExtension-all-target-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/MJExtension-generated-files.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/MJExtension-own-target-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/MJExtension-project-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/MJExtension.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/arm64/MJExtension.LinkFileList","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/armv7/MJExtension.LinkFileList","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/all-product-headers.yaml","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/module.modulemap"],"outputs":["<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--end>"]}
"Gate target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--entry": {"tool":"phony","inputs":["<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643-Debug-iphoneos-stale-file-removal>","<CreateBuildDirectory-/tmp/Pods.dst>","<CreateBuildDirectory-/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build>","<CreateBuildDirectory-/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build>","<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--begin-compiling>"],"outputs":["<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--entry>"]}
"Gate target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--generated-headers": {"tool":"phony","inputs":["<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--begin-compiling>"],"outputs":["<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--generated-headers>"]}
"Gate target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--immediate": {"tool":"phony","inputs":["<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643-Debug-iphoneos-stale-file-removal>","<CreateBuildDirectory-/tmp/Pods.dst>","<CreateBuildDirectory-/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build>","<CreateBuildDirectory-/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build>"],"outputs":["<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--immediate>"]}
"Gate target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--modules-ready": {"tool":"phony","inputs":["<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--begin-compiling>","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/arm64/MJExtension-dummy.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/arm64/MJExtensionConst.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/arm64/MJExtension_vers.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/arm64/MJFoundation.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/arm64/MJProperty.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/arm64/MJPropertyKey.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/arm64/MJPropertyType.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/arm64/NSObject+MJClass.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/arm64/NSObject+MJCoding.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/arm64/NSObject+MJKeyValue.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/arm64/NSObject+MJProperty.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/arm64/NSString+MJExtension.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/armv7/MJExtension-dummy.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/armv7/MJExtensionConst.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/armv7/MJExtension_vers.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/armv7/MJFoundation.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/armv7/MJProperty.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/armv7/MJPropertyKey.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/armv7/MJPropertyType.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/armv7/NSObject+MJClass.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/armv7/NSObject+MJCoding.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/armv7/NSObject+MJKeyValue.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/armv7/NSObject+MJProperty.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/armv7/NSString+MJExtension.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension/MJExtension.framework/Headers/MJExtension.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension/MJExtension.framework/Headers/MJExtensionConst.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension/MJExtension.framework/Headers/MJFoundation.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension/MJExtension.framework/Headers/MJProperty.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension/MJExtension.framework/Headers/MJPropertyKey.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension/MJExtension.framework/Headers/MJPropertyType.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension/MJExtension.framework/Headers/NSObject+MJClass.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension/MJExtension.framework/Headers/NSObject+MJCoding.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension/MJExtension.framework/Headers/NSObject+MJKeyValue.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension/MJExtension.framework/Headers/NSObject+MJProperty.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension/MJExtension.framework/Headers/NSString+MJExtension.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension/MJExtension.framework/Headers/MJExtension-umbrella.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/DerivedSources/MJExtension_vers.c"],"outputs":["<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--modules-ready>"]}
"Gate target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--phase0-copy-headers": {"tool":"phony","inputs":["<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--HeadermapTaskProducer>","<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--begin-compiling>","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension/MJExtension.framework/Headers/MJExtension.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension/MJExtension.framework/Headers/MJExtensionConst.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension/MJExtension.framework/Headers/MJFoundation.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension/MJExtension.framework/Headers/MJProperty.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension/MJExtension.framework/Headers/MJPropertyKey.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension/MJExtension.framework/Headers/MJPropertyType.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension/MJExtension.framework/Headers/NSObject+MJClass.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension/MJExtension.framework/Headers/NSObject+MJCoding.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension/MJExtension.framework/Headers/NSObject+MJKeyValue.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension/MJExtension.framework/Headers/NSObject+MJProperty.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension/MJExtension.framework/Headers/NSString+MJExtension.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension/MJExtension.framework/Headers/MJExtension-umbrella.h"],"outputs":["<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--phase0-copy-headers>"]}
"Gate target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--phase1-compile-sources": {"tool":"phony","inputs":["<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--phase0-copy-headers>","<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--begin-compiling>","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/arm64/MJExtension-dummy.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/arm64/MJExtensionConst.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/arm64/MJExtension_vers.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/arm64/MJFoundation.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/arm64/MJProperty.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/arm64/MJPropertyKey.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/arm64/MJPropertyType.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/arm64/NSObject+MJClass.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/arm64/NSObject+MJCoding.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/arm64/NSObject+MJKeyValue.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/arm64/NSObject+MJProperty.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/arm64/NSString+MJExtension.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/armv7/MJExtension-dummy.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/armv7/MJExtensionConst.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/armv7/MJExtension_vers.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/armv7/MJFoundation.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/armv7/MJProperty.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/armv7/MJPropertyKey.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/armv7/MJPropertyType.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/armv7/NSObject+MJClass.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/armv7/NSObject+MJCoding.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/armv7/NSObject+MJKeyValue.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/armv7/NSObject+MJProperty.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/armv7/NSString+MJExtension.o","<Linked Binary /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension/MJExtension.framework/MJExtension>","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/arm64/Binary/MJExtension","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/armv7/Binary/MJExtension","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/DerivedSources/MJExtension_vers.c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/arm64/MJExtension.LinkFileList","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/armv7/MJExtension.LinkFileList"],"outputs":["<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--phase1-compile-sources>"]}
"Gate target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--phase3-copy-bundle-resources": {"tool":"phony","inputs":["<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--phase1-compile-sources>","<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--begin-compiling>"],"outputs":["<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--phase3-copy-bundle-resources>"]}
"Gate target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--Barrier-ChangeAlternatePermissions": {"tool":"phony","inputs":["<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--Barrier-ChangePermissions>","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--begin-compiling>"],"outputs":["<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--Barrier-ChangeAlternatePermissions>"]}
"Gate target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--Barrier-ChangePermissions": {"tool":"phony","inputs":["<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--Barrier-StripSymbols>","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--begin-compiling>"],"outputs":["<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--Barrier-ChangePermissions>"]}
"Gate target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--Barrier-CodeSign": {"tool":"phony","inputs":["<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--Barrier-ChangeAlternatePermissions>","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--begin-compiling>"],"outputs":["<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--Barrier-CodeSign>"]}
"Gate target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--Barrier-CopyAside": {"tool":"phony","inputs":["<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--ProductPostprocessingTaskProducer>","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--begin-compiling>"],"outputs":["<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--Barrier-CopyAside>"]}
"Gate target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--Barrier-RegisterExecutionPolicyException": {"tool":"phony","inputs":["<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--Barrier-CodeSign>","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--begin-compiling>"],"outputs":["<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--Barrier-RegisterExecutionPolicyException>"]}
"Gate target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--Barrier-StripSymbols": {"tool":"phony","inputs":["<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--Barrier-CopyAside>","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--begin-compiling>"],"outputs":["<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--Barrier-StripSymbols>"]}
"Gate target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--Barrier-Validate": {"tool":"phony","inputs":["<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--Barrier-RegisterExecutionPolicyException>","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--begin-compiling>","<Touch /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/MJRefresh.framework>"],"outputs":["<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--Barrier-Validate>"]}
"Gate target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--GeneratedFilesTaskProducer": {"tool":"phony","inputs":["<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--XCFrameworkTaskProducer>","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--begin-compiling>"],"outputs":["<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--GeneratedFilesTaskProducer>"]}
"Gate target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--HeadermapTaskProducer": {"tool":"phony","inputs":["<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--GeneratedFilesTaskProducer>","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--begin-compiling>","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/MJRefresh-all-non-framework-target-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/MJRefresh-all-target-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/MJRefresh-generated-files.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/MJRefresh-own-target-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/MJRefresh-project-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/MJRefresh.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/all-product-headers.yaml"],"outputs":["<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--HeadermapTaskProducer>"]}
"Gate target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--InfoPlistTaskProducer": {"tool":"phony","inputs":["<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--HeadermapTaskProducer>","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--begin-compiling>","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/MJRefresh.framework/Info.plist"],"outputs":["<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--InfoPlistTaskProducer>"]}
"Gate target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--ModuleMapTaskProducer": {"tool":"phony","inputs":["<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--HeadermapTaskProducer>","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--begin-compiling>","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/MJRefresh.framework/Modules/module.modulemap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/module.modulemap"],"outputs":["<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--ModuleMapTaskProducer>"]}
"Gate target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--ProductPostprocessingTaskProducer": {"tool":"phony","inputs":["<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--HeadermapTaskProducer>","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--phase3-copy-bundle-resources>","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--InfoPlistTaskProducer>","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--VersionPlistTaskProducer>","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--SanitizerTaskProducer>","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--ModuleMapTaskProducer>","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--SwiftStandardLibrariesTaskProducer>","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--StubBinaryTaskProducer>","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--TestTargetTaskProducer>","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--begin-compiling>"],"outputs":["<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--ProductPostprocessingTaskProducer>"]}
"Gate target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--ProductStructureTaskProducer": {"tool":"phony","inputs":["<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--start>","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--begin-compiling>","<MkDir /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/MJRefresh.framework>","<MkDir /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/MJRefresh.framework/Headers>"],"outputs":["<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--ProductStructureTaskProducer>"]}
"Gate target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--SanitizerTaskProducer": {"tool":"phony","inputs":["<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--HeadermapTaskProducer>","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--begin-compiling>"],"outputs":["<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--SanitizerTaskProducer>"]}
"Gate target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--StubBinaryTaskProducer": {"tool":"phony","inputs":["<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--HeadermapTaskProducer>","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--begin-compiling>"],"outputs":["<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--StubBinaryTaskProducer>"]}
"Gate target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--SwiftStandardLibrariesTaskProducer": {"tool":"phony","inputs":["<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--HeadermapTaskProducer>","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--phase3-copy-bundle-resources>","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--begin-compiling>"],"outputs":["<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--SwiftStandardLibrariesTaskProducer>"]}
"Gate target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--TestTargetPostprocessingTaskProducer": {"tool":"phony","inputs":["<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--ProductPostprocessingTaskProducer>","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--begin-compiling>"],"outputs":["<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--TestTargetPostprocessingTaskProducer>"]}
"Gate target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--TestTargetTaskProducer": {"tool":"phony","inputs":["<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--HeadermapTaskProducer>","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--begin-compiling>"],"outputs":["<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--TestTargetTaskProducer>"]}
"Gate target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--VersionPlistTaskProducer": {"tool":"phony","inputs":["<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--HeadermapTaskProducer>","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--begin-compiling>"],"outputs":["<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--VersionPlistTaskProducer>"]}
"Gate target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--XCFrameworkTaskProducer": {"tool":"phony","inputs":["<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--ProductStructureTaskProducer>","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--begin-compiling>"],"outputs":["<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--XCFrameworkTaskProducer>"]}
"Gate target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--begin-compiling": {"tool":"phony","inputs":["<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e-Debug-iphoneos-stale-file-removal>","<CreateBuildDirectory-/tmp/Pods.dst>","<CreateBuildDirectory-/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build>","<CreateBuildDirectory-/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build>"],"outputs":["<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--begin-compiling>"]}
"Gate target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--end": {"tool":"phony","inputs":["<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--entry>","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--Barrier-ChangeAlternatePermissions>","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--Barrier-ChangePermissions>","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--Barrier-CodeSign>","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--Barrier-CopyAside>","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--Barrier-RegisterExecutionPolicyException>","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--Barrier-StripSymbols>","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--Barrier-Validate>","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--GeneratedFilesTaskProducer>","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--HeadermapTaskProducer>","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--InfoPlistTaskProducer>","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--ModuleMapTaskProducer>","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--ProductPostprocessingTaskProducer>","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--ProductStructureTaskProducer>","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--SanitizerTaskProducer>","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--StubBinaryTaskProducer>","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--SwiftStandardLibrariesTaskProducer>","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--TestTargetPostprocessingTaskProducer>","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--TestTargetTaskProducer>","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--VersionPlistTaskProducer>","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--XCFrameworkTaskProducer>","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--generated-headers>","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--phase0-copy-headers>","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--phase1-compile-sources>","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--phase3-copy-bundle-resources>","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/MJRefresh-dummy.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/MJRefreshAutoFooter.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/MJRefreshAutoGifFooter.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/MJRefreshAutoNormalFooter.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/MJRefreshAutoStateFooter.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/MJRefreshBackFooter.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/MJRefreshBackGifFooter.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/MJRefreshBackNormalFooter.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/MJRefreshBackStateFooter.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/MJRefreshComponent.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/MJRefreshConfig.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/MJRefreshConst.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/MJRefreshFooter.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/MJRefreshGifHeader.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/MJRefreshHeader.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/MJRefreshNormalHeader.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/MJRefreshStateHeader.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/MJRefresh_vers.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/NSBundle+MJRefresh.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/UIScrollView+MJExtension.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/UIScrollView+MJRefresh.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/UIView+MJExtension.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/MJRefresh-dummy.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/MJRefreshAutoFooter.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/MJRefreshAutoGifFooter.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/MJRefreshAutoNormalFooter.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/MJRefreshAutoStateFooter.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/MJRefreshBackFooter.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/MJRefreshBackGifFooter.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/MJRefreshBackNormalFooter.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/MJRefreshBackStateFooter.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/MJRefreshComponent.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/MJRefreshConfig.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/MJRefreshConst.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/MJRefreshFooter.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/MJRefreshGifHeader.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/MJRefreshHeader.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/MJRefreshNormalHeader.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/MJRefreshStateHeader.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/MJRefresh_vers.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/NSBundle+MJRefresh.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/UIScrollView+MJExtension.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/UIScrollView+MJRefresh.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/UIView+MJExtension.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/MJRefresh.framework/Headers/MJRefreshAutoFooter.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/MJRefresh.framework/Headers/MJRefreshBackFooter.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/MJRefresh.framework/Headers/MJRefreshComponent.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/MJRefresh.framework/Headers/MJRefreshFooter.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/MJRefresh.framework/Headers/MJRefreshHeader.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/MJRefresh.framework/Headers/MJRefreshAutoGifFooter.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/MJRefresh.framework/Headers/MJRefreshAutoNormalFooter.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/MJRefresh.framework/Headers/MJRefreshAutoStateFooter.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/MJRefresh.framework/Headers/MJRefreshBackGifFooter.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/MJRefresh.framework/Headers/MJRefreshBackNormalFooter.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/MJRefresh.framework/Headers/MJRefreshBackStateFooter.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/MJRefresh.framework/Headers/MJRefreshGifHeader.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/MJRefresh.framework/Headers/MJRefreshNormalHeader.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/MJRefresh.framework/Headers/MJRefreshStateHeader.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/MJRefresh.framework/Headers/MJRefresh.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/MJRefresh.framework/Headers/MJRefreshConfig.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/MJRefresh.framework/Headers/MJRefreshConst.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/MJRefresh.framework/Headers/NSBundle+MJRefresh.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/MJRefresh.framework/Headers/UIScrollView+MJExtension.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/MJRefresh.framework/Headers/UIScrollView+MJRefresh.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/MJRefresh.framework/Headers/UIView+MJExtension.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/MJRefresh.framework/Headers/MJRefresh-umbrella.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/MJRefresh.framework/MJRefresh.bundle","<Linked Binary /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/MJRefresh.framework/MJRefresh>","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/MJRefresh.framework/Modules/module.modulemap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/Binary/MJRefresh","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/Binary/MJRefresh","<MkDir /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/MJRefresh.framework>","<MkDir /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/MJRefresh.framework/Headers>","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/MJRefresh.framework/Info.plist","<Touch /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/MJRefresh.framework>","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/DerivedSources/MJRefresh_vers.c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/MJRefresh-all-non-framework-target-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/MJRefresh-all-target-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/MJRefresh-generated-files.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/MJRefresh-own-target-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/MJRefresh-project-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/MJRefresh.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/MJRefresh.LinkFileList","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/MJRefresh.LinkFileList","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/all-product-headers.yaml","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/module.modulemap"],"outputs":["<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--end>"]}
"Gate target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--entry": {"tool":"phony","inputs":["<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e-Debug-iphoneos-stale-file-removal>","<CreateBuildDirectory-/tmp/Pods.dst>","<CreateBuildDirectory-/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build>","<CreateBuildDirectory-/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build>","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--begin-compiling>"],"outputs":["<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--entry>"]}
"Gate target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--generated-headers": {"tool":"phony","inputs":["<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--begin-compiling>"],"outputs":["<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--generated-headers>"]}
"Gate target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--immediate": {"tool":"phony","inputs":["<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e-Debug-iphoneos-stale-file-removal>","<CreateBuildDirectory-/tmp/Pods.dst>","<CreateBuildDirectory-/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build>","<CreateBuildDirectory-/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build>"],"outputs":["<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--immediate>"]}
"Gate target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--modules-ready": {"tool":"phony","inputs":["<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--begin-compiling>","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/MJRefresh-dummy.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/MJRefreshAutoFooter.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/MJRefreshAutoGifFooter.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/MJRefreshAutoNormalFooter.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/MJRefreshAutoStateFooter.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/MJRefreshBackFooter.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/MJRefreshBackGifFooter.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/MJRefreshBackNormalFooter.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/MJRefreshBackStateFooter.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/MJRefreshComponent.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/MJRefreshConfig.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/MJRefreshConst.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/MJRefreshFooter.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/MJRefreshGifHeader.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/MJRefreshHeader.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/MJRefreshNormalHeader.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/MJRefreshStateHeader.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/MJRefresh_vers.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/NSBundle+MJRefresh.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/UIScrollView+MJExtension.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/UIScrollView+MJRefresh.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/UIView+MJExtension.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/MJRefresh-dummy.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/MJRefreshAutoFooter.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/MJRefreshAutoGifFooter.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/MJRefreshAutoNormalFooter.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/MJRefreshAutoStateFooter.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/MJRefreshBackFooter.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/MJRefreshBackGifFooter.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/MJRefreshBackNormalFooter.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/MJRefreshBackStateFooter.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/MJRefreshComponent.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/MJRefreshConfig.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/MJRefreshConst.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/MJRefreshFooter.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/MJRefreshGifHeader.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/MJRefreshHeader.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/MJRefreshNormalHeader.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/MJRefreshStateHeader.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/MJRefresh_vers.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/NSBundle+MJRefresh.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/UIScrollView+MJExtension.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/UIScrollView+MJRefresh.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/UIView+MJExtension.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/MJRefresh.framework/Headers/MJRefreshAutoFooter.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/MJRefresh.framework/Headers/MJRefreshBackFooter.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/MJRefresh.framework/Headers/MJRefreshComponent.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/MJRefresh.framework/Headers/MJRefreshFooter.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/MJRefresh.framework/Headers/MJRefreshHeader.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/MJRefresh.framework/Headers/MJRefreshAutoGifFooter.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/MJRefresh.framework/Headers/MJRefreshAutoNormalFooter.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/MJRefresh.framework/Headers/MJRefreshAutoStateFooter.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/MJRefresh.framework/Headers/MJRefreshBackGifFooter.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/MJRefresh.framework/Headers/MJRefreshBackNormalFooter.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/MJRefresh.framework/Headers/MJRefreshBackStateFooter.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/MJRefresh.framework/Headers/MJRefreshGifHeader.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/MJRefresh.framework/Headers/MJRefreshNormalHeader.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/MJRefresh.framework/Headers/MJRefreshStateHeader.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/MJRefresh.framework/Headers/MJRefresh.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/MJRefresh.framework/Headers/MJRefreshConfig.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/MJRefresh.framework/Headers/MJRefreshConst.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/MJRefresh.framework/Headers/NSBundle+MJRefresh.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/MJRefresh.framework/Headers/UIScrollView+MJExtension.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/MJRefresh.framework/Headers/UIScrollView+MJRefresh.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/MJRefresh.framework/Headers/UIView+MJExtension.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/MJRefresh.framework/Headers/MJRefresh-umbrella.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/DerivedSources/MJRefresh_vers.c"],"outputs":["<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--modules-ready>"]}
"Gate target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--phase0-copy-headers": {"tool":"phony","inputs":["<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--HeadermapTaskProducer>","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--begin-compiling>","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/MJRefresh.framework/Headers/MJRefreshAutoFooter.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/MJRefresh.framework/Headers/MJRefreshBackFooter.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/MJRefresh.framework/Headers/MJRefreshComponent.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/MJRefresh.framework/Headers/MJRefreshFooter.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/MJRefresh.framework/Headers/MJRefreshHeader.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/MJRefresh.framework/Headers/MJRefreshAutoGifFooter.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/MJRefresh.framework/Headers/MJRefreshAutoNormalFooter.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/MJRefresh.framework/Headers/MJRefreshAutoStateFooter.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/MJRefresh.framework/Headers/MJRefreshBackGifFooter.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/MJRefresh.framework/Headers/MJRefreshBackNormalFooter.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/MJRefresh.framework/Headers/MJRefreshBackStateFooter.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/MJRefresh.framework/Headers/MJRefreshGifHeader.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/MJRefresh.framework/Headers/MJRefreshNormalHeader.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/MJRefresh.framework/Headers/MJRefreshStateHeader.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/MJRefresh.framework/Headers/MJRefresh.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/MJRefresh.framework/Headers/MJRefreshConfig.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/MJRefresh.framework/Headers/MJRefreshConst.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/MJRefresh.framework/Headers/NSBundle+MJRefresh.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/MJRefresh.framework/Headers/UIScrollView+MJExtension.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/MJRefresh.framework/Headers/UIScrollView+MJRefresh.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/MJRefresh.framework/Headers/UIView+MJExtension.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/MJRefresh.framework/Headers/MJRefresh-umbrella.h"],"outputs":["<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--phase0-copy-headers>"]}
"Gate target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--phase1-compile-sources": {"tool":"phony","inputs":["<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--phase0-copy-headers>","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--begin-compiling>","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/MJRefresh-dummy.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/MJRefreshAutoFooter.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/MJRefreshAutoGifFooter.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/MJRefreshAutoNormalFooter.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/MJRefreshAutoStateFooter.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/MJRefreshBackFooter.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/MJRefreshBackGifFooter.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/MJRefreshBackNormalFooter.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/MJRefreshBackStateFooter.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/MJRefreshComponent.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/MJRefreshConfig.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/MJRefreshConst.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/MJRefreshFooter.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/MJRefreshGifHeader.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/MJRefreshHeader.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/MJRefreshNormalHeader.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/MJRefreshStateHeader.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/MJRefresh_vers.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/NSBundle+MJRefresh.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/UIScrollView+MJExtension.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/UIScrollView+MJRefresh.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/UIView+MJExtension.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/MJRefresh-dummy.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/MJRefreshAutoFooter.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/MJRefreshAutoGifFooter.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/MJRefreshAutoNormalFooter.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/MJRefreshAutoStateFooter.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/MJRefreshBackFooter.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/MJRefreshBackGifFooter.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/MJRefreshBackNormalFooter.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/MJRefreshBackStateFooter.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/MJRefreshComponent.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/MJRefreshConfig.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/MJRefreshConst.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/MJRefreshFooter.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/MJRefreshGifHeader.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/MJRefreshHeader.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/MJRefreshNormalHeader.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/MJRefreshStateHeader.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/MJRefresh_vers.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/NSBundle+MJRefresh.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/UIScrollView+MJExtension.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/UIScrollView+MJRefresh.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/UIView+MJExtension.o","<Linked Binary /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/MJRefresh.framework/MJRefresh>","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/Binary/MJRefresh","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/Binary/MJRefresh","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/DerivedSources/MJRefresh_vers.c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/MJRefresh.LinkFileList","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/MJRefresh.LinkFileList"],"outputs":["<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--phase1-compile-sources>"]}
"Gate target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--phase3-copy-bundle-resources": {"tool":"phony","inputs":["<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--phase1-compile-sources>","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--begin-compiling>","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/MJRefresh.framework/MJRefresh.bundle"],"outputs":["<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--phase3-copy-bundle-resources>"]}
"Gate target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--Barrier-ChangeAlternatePermissions": {"tool":"phony","inputs":["<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--Barrier-ChangePermissions>","<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--begin-compiling>"],"outputs":["<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--Barrier-ChangeAlternatePermissions>"]}
"Gate target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--Barrier-ChangePermissions": {"tool":"phony","inputs":["<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--Barrier-StripSymbols>","<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--begin-compiling>"],"outputs":["<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--Barrier-ChangePermissions>"]}
"Gate target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--Barrier-CodeSign": {"tool":"phony","inputs":["<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--Barrier-ChangeAlternatePermissions>","<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--begin-compiling>"],"outputs":["<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--Barrier-CodeSign>"]}
"Gate target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--Barrier-CopyAside": {"tool":"phony","inputs":["<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--ProductPostprocessingTaskProducer>","<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--begin-compiling>"],"outputs":["<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--Barrier-CopyAside>"]}
"Gate target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--Barrier-RegisterExecutionPolicyException": {"tool":"phony","inputs":["<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--Barrier-CodeSign>","<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--begin-compiling>"],"outputs":["<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--Barrier-RegisterExecutionPolicyException>"]}
"Gate target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--Barrier-StripSymbols": {"tool":"phony","inputs":["<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--Barrier-CopyAside>","<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--begin-compiling>"],"outputs":["<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--Barrier-StripSymbols>"]}
"Gate target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--Barrier-Validate": {"tool":"phony","inputs":["<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--Barrier-RegisterExecutionPolicyException>","<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--begin-compiling>","<Touch /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry/Masonry.framework>"],"outputs":["<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--Barrier-Validate>"]}
"Gate target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--GeneratedFilesTaskProducer": {"tool":"phony","inputs":["<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--XCFrameworkTaskProducer>","<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--begin-compiling>"],"outputs":["<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--GeneratedFilesTaskProducer>"]}
"Gate target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--HeadermapTaskProducer": {"tool":"phony","inputs":["<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--GeneratedFilesTaskProducer>","<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--begin-compiling>","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Masonry-all-non-framework-target-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Masonry-all-target-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Masonry-generated-files.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Masonry-own-target-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Masonry-project-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Masonry.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/all-product-headers.yaml"],"outputs":["<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--HeadermapTaskProducer>"]}
"Gate target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--InfoPlistTaskProducer": {"tool":"phony","inputs":["<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--HeadermapTaskProducer>","<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--begin-compiling>","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry/Masonry.framework/Info.plist"],"outputs":["<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--InfoPlistTaskProducer>"]}
"Gate target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--ModuleMapTaskProducer": {"tool":"phony","inputs":["<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--HeadermapTaskProducer>","<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--begin-compiling>","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry/Masonry.framework/Modules/module.modulemap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/module.modulemap"],"outputs":["<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--ModuleMapTaskProducer>"]}
"Gate target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--ProductPostprocessingTaskProducer": {"tool":"phony","inputs":["<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--HeadermapTaskProducer>","<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--phase3-copy-bundle-resources>","<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--InfoPlistTaskProducer>","<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--VersionPlistTaskProducer>","<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--SanitizerTaskProducer>","<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--ModuleMapTaskProducer>","<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--SwiftStandardLibrariesTaskProducer>","<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--StubBinaryTaskProducer>","<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--TestTargetTaskProducer>","<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--begin-compiling>"],"outputs":["<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--ProductPostprocessingTaskProducer>"]}
"Gate target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--ProductStructureTaskProducer": {"tool":"phony","inputs":["<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--start>","<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--begin-compiling>","<MkDir /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry/Masonry.framework>","<MkDir /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry/Masonry.framework/Headers>"],"outputs":["<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--ProductStructureTaskProducer>"]}
"Gate target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--SanitizerTaskProducer": {"tool":"phony","inputs":["<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--HeadermapTaskProducer>","<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--begin-compiling>"],"outputs":["<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--SanitizerTaskProducer>"]}
"Gate target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--StubBinaryTaskProducer": {"tool":"phony","inputs":["<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--HeadermapTaskProducer>","<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--begin-compiling>"],"outputs":["<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--StubBinaryTaskProducer>"]}
"Gate target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--SwiftStandardLibrariesTaskProducer": {"tool":"phony","inputs":["<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--HeadermapTaskProducer>","<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--phase3-copy-bundle-resources>","<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--begin-compiling>"],"outputs":["<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--SwiftStandardLibrariesTaskProducer>"]}
"Gate target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--TestTargetPostprocessingTaskProducer": {"tool":"phony","inputs":["<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--ProductPostprocessingTaskProducer>","<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--begin-compiling>"],"outputs":["<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--TestTargetPostprocessingTaskProducer>"]}
"Gate target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--TestTargetTaskProducer": {"tool":"phony","inputs":["<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--HeadermapTaskProducer>","<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--begin-compiling>"],"outputs":["<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--TestTargetTaskProducer>"]}
"Gate target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--VersionPlistTaskProducer": {"tool":"phony","inputs":["<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--HeadermapTaskProducer>","<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--begin-compiling>"],"outputs":["<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--VersionPlistTaskProducer>"]}
"Gate target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--XCFrameworkTaskProducer": {"tool":"phony","inputs":["<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--ProductStructureTaskProducer>","<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--begin-compiling>"],"outputs":["<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--XCFrameworkTaskProducer>"]}
"Gate target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--begin-compiling": {"tool":"phony","inputs":["<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5-Debug-iphoneos-stale-file-removal>","<CreateBuildDirectory-/tmp/Pods.dst>","<CreateBuildDirectory-/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build>","<CreateBuildDirectory-/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build>"],"outputs":["<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--begin-compiling>"]}
"Gate target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--end": {"tool":"phony","inputs":["<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--entry>","<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--Barrier-ChangeAlternatePermissions>","<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--Barrier-ChangePermissions>","<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--Barrier-CodeSign>","<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--Barrier-CopyAside>","<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--Barrier-RegisterExecutionPolicyException>","<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--Barrier-StripSymbols>","<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--Barrier-Validate>","<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--GeneratedFilesTaskProducer>","<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--HeadermapTaskProducer>","<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--InfoPlistTaskProducer>","<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--ModuleMapTaskProducer>","<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--ProductPostprocessingTaskProducer>","<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--ProductStructureTaskProducer>","<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--SanitizerTaskProducer>","<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--StubBinaryTaskProducer>","<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--SwiftStandardLibrariesTaskProducer>","<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--TestTargetPostprocessingTaskProducer>","<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--TestTargetTaskProducer>","<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--VersionPlistTaskProducer>","<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--XCFrameworkTaskProducer>","<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--generated-headers>","<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--phase0-copy-headers>","<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--phase1-compile-sources>","<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--phase3-copy-bundle-resources>","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/arm64/MASCompositeConstraint.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/arm64/MASConstraint.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/arm64/MASConstraintMaker.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/arm64/MASLayoutConstraint.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/arm64/MASViewAttribute.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/arm64/MASViewConstraint.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/arm64/Masonry-dummy.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/arm64/Masonry_vers.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/arm64/NSArray+MASAdditions.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/arm64/NSLayoutConstraint+MASDebugAdditions.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/arm64/View+MASAdditions.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/arm64/ViewController+MASAdditions.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/armv7/MASCompositeConstraint.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/armv7/MASConstraint.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/armv7/MASConstraintMaker.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/armv7/MASLayoutConstraint.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/armv7/MASViewAttribute.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/armv7/MASViewConstraint.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/armv7/Masonry-dummy.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/armv7/Masonry_vers.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/armv7/NSArray+MASAdditions.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/armv7/NSLayoutConstraint+MASDebugAdditions.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/armv7/View+MASAdditions.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/armv7/ViewController+MASAdditions.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry/Masonry.framework/Headers/MASCompositeConstraint.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry/Masonry.framework/Headers/MASConstraint+Private.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry/Masonry.framework/Headers/MASConstraint.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry/Masonry.framework/Headers/MASConstraintMaker.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry/Masonry.framework/Headers/MASLayoutConstraint.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry/Masonry.framework/Headers/MASUtilities.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry/Masonry.framework/Headers/MASViewAttribute.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry/Masonry.framework/Headers/MASViewConstraint.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry/Masonry.framework/Headers/Masonry.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry/Masonry.framework/Headers/NSArray+MASAdditions.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry/Masonry.framework/Headers/NSArray+MASShorthandAdditions.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry/Masonry.framework/Headers/NSLayoutConstraint+MASDebugAdditions.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry/Masonry.framework/Headers/View+MASAdditions.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry/Masonry.framework/Headers/View+MASShorthandAdditions.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry/Masonry.framework/Headers/ViewController+MASAdditions.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry/Masonry.framework/Headers/Masonry-umbrella.h","<Linked Binary /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry/Masonry.framework/Masonry>","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry/Masonry.framework/Modules/module.modulemap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/arm64/Binary/Masonry","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/armv7/Binary/Masonry","<MkDir /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry/Masonry.framework>","<MkDir /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry/Masonry.framework/Headers>","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry/Masonry.framework/Info.plist","<Touch /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry/Masonry.framework>","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/DerivedSources/Masonry_vers.c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Masonry-all-non-framework-target-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Masonry-all-target-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Masonry-generated-files.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Masonry-own-target-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Masonry-project-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Masonry.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/arm64/Masonry.LinkFileList","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/armv7/Masonry.LinkFileList","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/all-product-headers.yaml","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/module.modulemap"],"outputs":["<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--end>"]}
"Gate target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--entry": {"tool":"phony","inputs":["<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5-Debug-iphoneos-stale-file-removal>","<CreateBuildDirectory-/tmp/Pods.dst>","<CreateBuildDirectory-/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build>","<CreateBuildDirectory-/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build>","<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--begin-compiling>"],"outputs":["<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--entry>"]}
"Gate target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--generated-headers": {"tool":"phony","inputs":["<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--begin-compiling>"],"outputs":["<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--generated-headers>"]}
"Gate target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--immediate": {"tool":"phony","inputs":["<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5-Debug-iphoneos-stale-file-removal>","<CreateBuildDirectory-/tmp/Pods.dst>","<CreateBuildDirectory-/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build>","<CreateBuildDirectory-/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build>"],"outputs":["<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--immediate>"]}
"Gate target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--modules-ready": {"tool":"phony","inputs":["<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--begin-compiling>","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/arm64/MASCompositeConstraint.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/arm64/MASConstraint.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/arm64/MASConstraintMaker.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/arm64/MASLayoutConstraint.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/arm64/MASViewAttribute.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/arm64/MASViewConstraint.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/arm64/Masonry-dummy.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/arm64/Masonry_vers.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/arm64/NSArray+MASAdditions.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/arm64/NSLayoutConstraint+MASDebugAdditions.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/arm64/View+MASAdditions.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/arm64/ViewController+MASAdditions.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/armv7/MASCompositeConstraint.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/armv7/MASConstraint.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/armv7/MASConstraintMaker.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/armv7/MASLayoutConstraint.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/armv7/MASViewAttribute.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/armv7/MASViewConstraint.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/armv7/Masonry-dummy.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/armv7/Masonry_vers.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/armv7/NSArray+MASAdditions.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/armv7/NSLayoutConstraint+MASDebugAdditions.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/armv7/View+MASAdditions.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/armv7/ViewController+MASAdditions.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry/Masonry.framework/Headers/MASCompositeConstraint.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry/Masonry.framework/Headers/MASConstraint+Private.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry/Masonry.framework/Headers/MASConstraint.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry/Masonry.framework/Headers/MASConstraintMaker.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry/Masonry.framework/Headers/MASLayoutConstraint.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry/Masonry.framework/Headers/MASUtilities.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry/Masonry.framework/Headers/MASViewAttribute.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry/Masonry.framework/Headers/MASViewConstraint.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry/Masonry.framework/Headers/Masonry.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry/Masonry.framework/Headers/NSArray+MASAdditions.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry/Masonry.framework/Headers/NSArray+MASShorthandAdditions.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry/Masonry.framework/Headers/NSLayoutConstraint+MASDebugAdditions.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry/Masonry.framework/Headers/View+MASAdditions.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry/Masonry.framework/Headers/View+MASShorthandAdditions.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry/Masonry.framework/Headers/ViewController+MASAdditions.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry/Masonry.framework/Headers/Masonry-umbrella.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/DerivedSources/Masonry_vers.c"],"outputs":["<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--modules-ready>"]}
"Gate target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--phase0-copy-headers": {"tool":"phony","inputs":["<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--HeadermapTaskProducer>","<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--begin-compiling>","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry/Masonry.framework/Headers/MASCompositeConstraint.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry/Masonry.framework/Headers/MASConstraint+Private.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry/Masonry.framework/Headers/MASConstraint.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry/Masonry.framework/Headers/MASConstraintMaker.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry/Masonry.framework/Headers/MASLayoutConstraint.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry/Masonry.framework/Headers/MASUtilities.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry/Masonry.framework/Headers/MASViewAttribute.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry/Masonry.framework/Headers/MASViewConstraint.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry/Masonry.framework/Headers/Masonry.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry/Masonry.framework/Headers/NSArray+MASAdditions.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry/Masonry.framework/Headers/NSArray+MASShorthandAdditions.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry/Masonry.framework/Headers/NSLayoutConstraint+MASDebugAdditions.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry/Masonry.framework/Headers/View+MASAdditions.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry/Masonry.framework/Headers/View+MASShorthandAdditions.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry/Masonry.framework/Headers/ViewController+MASAdditions.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry/Masonry.framework/Headers/Masonry-umbrella.h"],"outputs":["<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--phase0-copy-headers>"]}
"Gate target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--phase1-compile-sources": {"tool":"phony","inputs":["<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--phase0-copy-headers>","<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--begin-compiling>","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/arm64/MASCompositeConstraint.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/arm64/MASConstraint.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/arm64/MASConstraintMaker.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/arm64/MASLayoutConstraint.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/arm64/MASViewAttribute.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/arm64/MASViewConstraint.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/arm64/Masonry-dummy.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/arm64/Masonry_vers.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/arm64/NSArray+MASAdditions.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/arm64/NSLayoutConstraint+MASDebugAdditions.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/arm64/View+MASAdditions.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/arm64/ViewController+MASAdditions.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/armv7/MASCompositeConstraint.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/armv7/MASConstraint.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/armv7/MASConstraintMaker.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/armv7/MASLayoutConstraint.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/armv7/MASViewAttribute.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/armv7/MASViewConstraint.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/armv7/Masonry-dummy.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/armv7/Masonry_vers.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/armv7/NSArray+MASAdditions.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/armv7/NSLayoutConstraint+MASDebugAdditions.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/armv7/View+MASAdditions.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/armv7/ViewController+MASAdditions.o","<Linked Binary /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry/Masonry.framework/Masonry>","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/arm64/Binary/Masonry","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/armv7/Binary/Masonry","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/DerivedSources/Masonry_vers.c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/arm64/Masonry.LinkFileList","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/armv7/Masonry.LinkFileList"],"outputs":["<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--phase1-compile-sources>"]}
"Gate target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--phase3-copy-bundle-resources": {"tool":"phony","inputs":["<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--phase1-compile-sources>","<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--begin-compiling>"],"outputs":["<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--phase3-copy-bundle-resources>"]}
"Gate target-Pods-CNLiveIntegralModule_Example-285b96a559574e49fe0e1a40c03a5a8eed0c33fce09051cbc64ad7bd7697dde1--Barrier-ChangeAlternatePermissions": {"tool":"phony","inputs":["<target-Pods-CNLiveIntegralModule_Example-285b96a559574e49fe0e1a40c03a5a8eed0c33fce09051cbc64ad7bd7697dde1--Barrier-ChangePermissions>","<target-Pods-CNLiveIntegralModule_Example-285b96a559574e49fe0e1a40c03a5a8eed0c33fce09051cbc64ad7bd7697dde1--begin-compiling>"],"outputs":["<target-Pods-CNLiveIntegralModule_Example-285b96a559574e49fe0e1a40c03a5a8eed0c33fce09051cbc64ad7bd7697dde1--Barrier-ChangeAlternatePermissions>"]}
"Gate target-Pods-CNLiveIntegralModule_Example-285b96a559574e49fe0e1a40c03a5a8eed0c33fce09051cbc64ad7bd7697dde1--Barrier-ChangePermissions": {"tool":"phony","inputs":["<target-Pods-CNLiveIntegralModule_Example-285b96a559574e49fe0e1a40c03a5a8eed0c33fce09051cbc64ad7bd7697dde1--Barrier-StripSymbols>","<target-Pods-CNLiveIntegralModule_Example-285b96a559574e49fe0e1a40c03a5a8eed0c33fce09051cbc64ad7bd7697dde1--begin-compiling>"],"outputs":["<target-Pods-CNLiveIntegralModule_Example-285b96a559574e49fe0e1a40c03a5a8eed0c33fce09051cbc64ad7bd7697dde1--Barrier-ChangePermissions>"]}
"Gate target-Pods-CNLiveIntegralModule_Example-285b96a559574e49fe0e1a40c03a5a8eed0c33fce09051cbc64ad7bd7697dde1--Barrier-CodeSign": {"tool":"phony","inputs":["<target-Pods-CNLiveIntegralModule_Example-285b96a559574e49fe0e1a40c03a5a8eed0c33fce09051cbc64ad7bd7697dde1--Barrier-ChangeAlternatePermissions>","<target-Pods-CNLiveIntegralModule_Example-285b96a559574e49fe0e1a40c03a5a8eed0c33fce09051cbc64ad7bd7697dde1--begin-compiling>"],"outputs":["<target-Pods-CNLiveIntegralModule_Example-285b96a559574e49fe0e1a40c03a5a8eed0c33fce09051cbc64ad7bd7697dde1--Barrier-CodeSign>"]}
"Gate target-Pods-CNLiveIntegralModule_Example-285b96a559574e49fe0e1a40c03a5a8eed0c33fce09051cbc64ad7bd7697dde1--Barrier-CopyAside": {"tool":"phony","inputs":["<target-Pods-CNLiveIntegralModule_Example-285b96a559574e49fe0e1a40c03a5a8eed0c33fce09051cbc64ad7bd7697dde1--ProductPostprocessingTaskProducer>","<target-Pods-CNLiveIntegralModule_Example-285b96a559574e49fe0e1a40c03a5a8eed0c33fce09051cbc64ad7bd7697dde1--begin-compiling>"],"outputs":["<target-Pods-CNLiveIntegralModule_Example-285b96a559574e49fe0e1a40c03a5a8eed0c33fce09051cbc64ad7bd7697dde1--Barrier-CopyAside>"]}
"Gate target-Pods-CNLiveIntegralModule_Example-285b96a559574e49fe0e1a40c03a5a8eed0c33fce09051cbc64ad7bd7697dde1--Barrier-RegisterExecutionPolicyException": {"tool":"phony","inputs":["<target-Pods-CNLiveIntegralModule_Example-285b96a559574e49fe0e1a40c03a5a8eed0c33fce09051cbc64ad7bd7697dde1--Barrier-CodeSign>","<target-Pods-CNLiveIntegralModule_Example-285b96a559574e49fe0e1a40c03a5a8eed0c33fce09051cbc64ad7bd7697dde1--begin-compiling>"],"outputs":["<target-Pods-CNLiveIntegralModule_Example-285b96a559574e49fe0e1a40c03a5a8eed0c33fce09051cbc64ad7bd7697dde1--Barrier-RegisterExecutionPolicyException>"]}
"Gate target-Pods-CNLiveIntegralModule_Example-285b96a559574e49fe0e1a40c03a5a8eed0c33fce09051cbc64ad7bd7697dde1--Barrier-StripSymbols": {"tool":"phony","inputs":["<target-Pods-CNLiveIntegralModule_Example-285b96a559574e49fe0e1a40c03a5a8eed0c33fce09051cbc64ad7bd7697dde1--Barrier-CopyAside>","<target-Pods-CNLiveIntegralModule_Example-285b96a559574e49fe0e1a40c03a5a8eed0c33fce09051cbc64ad7bd7697dde1--begin-compiling>"],"outputs":["<target-Pods-CNLiveIntegralModule_Example-285b96a559574e49fe0e1a40c03a5a8eed0c33fce09051cbc64ad7bd7697dde1--Barrier-StripSymbols>"]}
"Gate target-Pods-CNLiveIntegralModule_Example-285b96a559574e49fe0e1a40c03a5a8eed0c33fce09051cbc64ad7bd7697dde1--Barrier-Validate": {"tool":"phony","inputs":["<target-Pods-CNLiveIntegralModule_Example-285b96a559574e49fe0e1a40c03a5a8eed0c33fce09051cbc64ad7bd7697dde1--Barrier-RegisterExecutionPolicyException>","<target-Pods-CNLiveIntegralModule_Example-285b96a559574e49fe0e1a40c03a5a8eed0c33fce09051cbc64ad7bd7697dde1--begin-compiling>","<Touch /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Pods_CNLiveIntegralModule_Example.framework>"],"outputs":["<target-Pods-CNLiveIntegralModule_Example-285b96a559574e49fe0e1a40c03a5a8eed0c33fce09051cbc64ad7bd7697dde1--Barrier-Validate>"]}
"Gate target-Pods-CNLiveIntegralModule_Example-285b96a559574e49fe0e1a40c03a5a8eed0c33fce09051cbc64ad7bd7697dde1--GeneratedFilesTaskProducer": {"tool":"phony","inputs":["<target-Pods-CNLiveIntegralModule_Example-285b96a559574e49fe0e1a40c03a5a8eed0c33fce09051cbc64ad7bd7697dde1--XCFrameworkTaskProducer>","<target-Pods-CNLiveIntegralModule_Example-285b96a559574e49fe0e1a40c03a5a8eed0c33fce09051cbc64ad7bd7697dde1--begin-compiling>"],"outputs":["<target-Pods-CNLiveIntegralModule_Example-285b96a559574e49fe0e1a40c03a5a8eed0c33fce09051cbc64ad7bd7697dde1--GeneratedFilesTaskProducer>"]}
"Gate target-Pods-CNLiveIntegralModule_Example-285b96a559574e49fe0e1a40c03a5a8eed0c33fce09051cbc64ad7bd7697dde1--HeadermapTaskProducer": {"tool":"phony","inputs":["<target-Pods-CNLiveIntegralModule_Example-285b96a559574e49fe0e1a40c03a5a8eed0c33fce09051cbc64ad7bd7697dde1--GeneratedFilesTaskProducer>","<target-Pods-CNLiveIntegralModule_Example-285b96a559574e49fe0e1a40c03a5a8eed0c33fce09051cbc64ad7bd7697dde1--begin-compiling>","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Example.build/Pods_CNLiveIntegralModule_Example-all-non-framework-target-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Example.build/Pods_CNLiveIntegralModule_Example-all-target-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Example.build/Pods_CNLiveIntegralModule_Example-generated-files.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Example.build/Pods_CNLiveIntegralModule_Example-own-target-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Example.build/Pods_CNLiveIntegralModule_Example-project-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Example.build/Pods_CNLiveIntegralModule_Example.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Example.build/all-product-headers.yaml"],"outputs":["<target-Pods-CNLiveIntegralModule_Example-285b96a559574e49fe0e1a40c03a5a8eed0c33fce09051cbc64ad7bd7697dde1--HeadermapTaskProducer>"]}
"Gate target-Pods-CNLiveIntegralModule_Example-285b96a559574e49fe0e1a40c03a5a8eed0c33fce09051cbc64ad7bd7697dde1--InfoPlistTaskProducer": {"tool":"phony","inputs":["<target-Pods-CNLiveIntegralModule_Example-285b96a559574e49fe0e1a40c03a5a8eed0c33fce09051cbc64ad7bd7697dde1--HeadermapTaskProducer>","<target-Pods-CNLiveIntegralModule_Example-285b96a559574e49fe0e1a40c03a5a8eed0c33fce09051cbc64ad7bd7697dde1--begin-compiling>","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Pods_CNLiveIntegralModule_Example.framework/Info.plist"],"outputs":["<target-Pods-CNLiveIntegralModule_Example-285b96a559574e49fe0e1a40c03a5a8eed0c33fce09051cbc64ad7bd7697dde1--InfoPlistTaskProducer>"]}
"Gate target-Pods-CNLiveIntegralModule_Example-285b96a559574e49fe0e1a40c03a5a8eed0c33fce09051cbc64ad7bd7697dde1--ModuleMapTaskProducer": {"tool":"phony","inputs":["<target-Pods-CNLiveIntegralModule_Example-285b96a559574e49fe0e1a40c03a5a8eed0c33fce09051cbc64ad7bd7697dde1--HeadermapTaskProducer>","<target-Pods-CNLiveIntegralModule_Example-285b96a559574e49fe0e1a40c03a5a8eed0c33fce09051cbc64ad7bd7697dde1--begin-compiling>","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Pods_CNLiveIntegralModule_Example.framework/Modules/module.modulemap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Example.build/module.modulemap"],"outputs":["<target-Pods-CNLiveIntegralModule_Example-285b96a559574e49fe0e1a40c03a5a8eed0c33fce09051cbc64ad7bd7697dde1--ModuleMapTaskProducer>"]}
"Gate target-Pods-CNLiveIntegralModule_Example-285b96a559574e49fe0e1a40c03a5a8eed0c33fce09051cbc64ad7bd7697dde1--ProductPostprocessingTaskProducer": {"tool":"phony","inputs":["<target-Pods-CNLiveIntegralModule_Example-285b96a559574e49fe0e1a40c03a5a8eed0c33fce09051cbc64ad7bd7697dde1--HeadermapTaskProducer>","<target-Pods-CNLiveIntegralModule_Example-285b96a559574e49fe0e1a40c03a5a8eed0c33fce09051cbc64ad7bd7697dde1--phase3-copy-bundle-resources>","<target-Pods-CNLiveIntegralModule_Example-285b96a559574e49fe0e1a40c03a5a8eed0c33fce09051cbc64ad7bd7697dde1--InfoPlistTaskProducer>","<target-Pods-CNLiveIntegralModule_Example-285b96a559574e49fe0e1a40c03a5a8eed0c33fce09051cbc64ad7bd7697dde1--VersionPlistTaskProducer>","<target-Pods-CNLiveIntegralModule_Example-285b96a559574e49fe0e1a40c03a5a8eed0c33fce09051cbc64ad7bd7697dde1--SanitizerTaskProducer>","<target-Pods-CNLiveIntegralModule_Example-285b96a559574e49fe0e1a40c03a5a8eed0c33fce09051cbc64ad7bd7697dde1--ModuleMapTaskProducer>","<target-Pods-CNLiveIntegralModule_Example-285b96a559574e49fe0e1a40c03a5a8eed0c33fce09051cbc64ad7bd7697dde1--SwiftStandardLibrariesTaskProducer>","<target-Pods-CNLiveIntegralModule_Example-285b96a559574e49fe0e1a40c03a5a8eed0c33fce09051cbc64ad7bd7697dde1--StubBinaryTaskProducer>","<target-Pods-CNLiveIntegralModule_Example-285b96a559574e49fe0e1a40c03a5a8eed0c33fce09051cbc64ad7bd7697dde1--TestTargetTaskProducer>","<target-Pods-CNLiveIntegralModule_Example-285b96a559574e49fe0e1a40c03a5a8eed0c33fce09051cbc64ad7bd7697dde1--begin-compiling>"],"outputs":["<target-Pods-CNLiveIntegralModule_Example-285b96a559574e49fe0e1a40c03a5a8eed0c33fce09051cbc64ad7bd7697dde1--ProductPostprocessingTaskProducer>"]}
"Gate target-Pods-CNLiveIntegralModule_Example-285b96a559574e49fe0e1a40c03a5a8eed0c33fce09051cbc64ad7bd7697dde1--ProductStructureTaskProducer": {"tool":"phony","inputs":["<target-Pods-CNLiveIntegralModule_Example-285b96a559574e49fe0e1a40c03a5a8eed0c33fce09051cbc64ad7bd7697dde1--start>","<target-Pods-CNLiveIntegralModule_Example-285b96a559574e49fe0e1a40c03a5a8eed0c33fce09051cbc64ad7bd7697dde1--begin-compiling>","<MkDir /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Pods_CNLiveIntegralModule_Example.framework>","<MkDir /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Pods_CNLiveIntegralModule_Example.framework/Headers>"],"outputs":["<target-Pods-CNLiveIntegralModule_Example-285b96a559574e49fe0e1a40c03a5a8eed0c33fce09051cbc64ad7bd7697dde1--ProductStructureTaskProducer>"]}
"Gate target-Pods-CNLiveIntegralModule_Example-285b96a559574e49fe0e1a40c03a5a8eed0c33fce09051cbc64ad7bd7697dde1--SanitizerTaskProducer": {"tool":"phony","inputs":["<target-Pods-CNLiveIntegralModule_Example-285b96a559574e49fe0e1a40c03a5a8eed0c33fce09051cbc64ad7bd7697dde1--HeadermapTaskProducer>","<target-Pods-CNLiveIntegralModule_Example-285b96a559574e49fe0e1a40c03a5a8eed0c33fce09051cbc64ad7bd7697dde1--begin-compiling>"],"outputs":["<target-Pods-CNLiveIntegralModule_Example-285b96a559574e49fe0e1a40c03a5a8eed0c33fce09051cbc64ad7bd7697dde1--SanitizerTaskProducer>"]}
"Gate target-Pods-CNLiveIntegralModule_Example-285b96a559574e49fe0e1a40c03a5a8eed0c33fce09051cbc64ad7bd7697dde1--StubBinaryTaskProducer": {"tool":"phony","inputs":["<target-Pods-CNLiveIntegralModule_Example-285b96a559574e49fe0e1a40c03a5a8eed0c33fce09051cbc64ad7bd7697dde1--HeadermapTaskProducer>","<target-Pods-CNLiveIntegralModule_Example-285b96a559574e49fe0e1a40c03a5a8eed0c33fce09051cbc64ad7bd7697dde1--begin-compiling>"],"outputs":["<target-Pods-CNLiveIntegralModule_Example-285b96a559574e49fe0e1a40c03a5a8eed0c33fce09051cbc64ad7bd7697dde1--StubBinaryTaskProducer>"]}
"Gate target-Pods-CNLiveIntegralModule_Example-285b96a559574e49fe0e1a40c03a5a8eed0c33fce09051cbc64ad7bd7697dde1--SwiftStandardLibrariesTaskProducer": {"tool":"phony","inputs":["<target-Pods-CNLiveIntegralModule_Example-285b96a559574e49fe0e1a40c03a5a8eed0c33fce09051cbc64ad7bd7697dde1--HeadermapTaskProducer>","<target-Pods-CNLiveIntegralModule_Example-285b96a559574e49fe0e1a40c03a5a8eed0c33fce09051cbc64ad7bd7697dde1--phase3-copy-bundle-resources>","<target-Pods-CNLiveIntegralModule_Example-285b96a559574e49fe0e1a40c03a5a8eed0c33fce09051cbc64ad7bd7697dde1--begin-compiling>"],"outputs":["<target-Pods-CNLiveIntegralModule_Example-285b96a559574e49fe0e1a40c03a5a8eed0c33fce09051cbc64ad7bd7697dde1--SwiftStandardLibrariesTaskProducer>"]}
"Gate target-Pods-CNLiveIntegralModule_Example-285b96a559574e49fe0e1a40c03a5a8eed0c33fce09051cbc64ad7bd7697dde1--TestTargetPostprocessingTaskProducer": {"tool":"phony","inputs":["<target-Pods-CNLiveIntegralModule_Example-285b96a559574e49fe0e1a40c03a5a8eed0c33fce09051cbc64ad7bd7697dde1--ProductPostprocessingTaskProducer>","<target-Pods-CNLiveIntegralModule_Example-285b96a559574e49fe0e1a40c03a5a8eed0c33fce09051cbc64ad7bd7697dde1--begin-compiling>"],"outputs":["<target-Pods-CNLiveIntegralModule_Example-285b96a559574e49fe0e1a40c03a5a8eed0c33fce09051cbc64ad7bd7697dde1--TestTargetPostprocessingTaskProducer>"]}
"Gate target-Pods-CNLiveIntegralModule_Example-285b96a559574e49fe0e1a40c03a5a8eed0c33fce09051cbc64ad7bd7697dde1--TestTargetTaskProducer": {"tool":"phony","inputs":["<target-Pods-CNLiveIntegralModule_Example-285b96a559574e49fe0e1a40c03a5a8eed0c33fce09051cbc64ad7bd7697dde1--HeadermapTaskProducer>","<target-Pods-CNLiveIntegralModule_Example-285b96a559574e49fe0e1a40c03a5a8eed0c33fce09051cbc64ad7bd7697dde1--begin-compiling>"],"outputs":["<target-Pods-CNLiveIntegralModule_Example-285b96a559574e49fe0e1a40c03a5a8eed0c33fce09051cbc64ad7bd7697dde1--TestTargetTaskProducer>"]}
"Gate target-Pods-CNLiveIntegralModule_Example-285b96a559574e49fe0e1a40c03a5a8eed0c33fce09051cbc64ad7bd7697dde1--VersionPlistTaskProducer": {"tool":"phony","inputs":["<target-Pods-CNLiveIntegralModule_Example-285b96a559574e49fe0e1a40c03a5a8eed0c33fce09051cbc64ad7bd7697dde1--HeadermapTaskProducer>","<target-Pods-CNLiveIntegralModule_Example-285b96a559574e49fe0e1a40c03a5a8eed0c33fce09051cbc64ad7bd7697dde1--begin-compiling>"],"outputs":["<target-Pods-CNLiveIntegralModule_Example-285b96a559574e49fe0e1a40c03a5a8eed0c33fce09051cbc64ad7bd7697dde1--VersionPlistTaskProducer>"]}
"Gate target-Pods-CNLiveIntegralModule_Example-285b96a559574e49fe0e1a40c03a5a8eed0c33fce09051cbc64ad7bd7697dde1--XCFrameworkTaskProducer": {"tool":"phony","inputs":["<target-Pods-CNLiveIntegralModule_Example-285b96a559574e49fe0e1a40c03a5a8eed0c33fce09051cbc64ad7bd7697dde1--ProductStructureTaskProducer>","<target-Pods-CNLiveIntegralModule_Example-285b96a559574e49fe0e1a40c03a5a8eed0c33fce09051cbc64ad7bd7697dde1--begin-compiling>"],"outputs":["<target-Pods-CNLiveIntegralModule_Example-285b96a559574e49fe0e1a40c03a5a8eed0c33fce09051cbc64ad7bd7697dde1--XCFrameworkTaskProducer>"]}
"Gate target-Pods-CNLiveIntegralModule_Example-285b96a559574e49fe0e1a40c03a5a8eed0c33fce09051cbc64ad7bd7697dde1--begin-compiling": {"tool":"phony","inputs":["<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--modules-ready>","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--modules-ready>","<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--modules-ready>","<target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9--modules-ready>","<target-CNLiveEnvironment-285b96a559574e49fe0e1a40c03a5a8e61e9c7c4a29ad91844f8d551bbfe0deb--modules-ready>","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--modules-ready>","<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--modules-ready>","<target-CNLiveServices-285b96a559574e49fe0e1a40c03a5a8e91d5e9d88631ee0f0e480b2efaa1542a--modules-ready>","<target-CNLiveTripartiteManagement-285b96a559574e49fe0e1a40c03a5a8ec69cdcecdf4ee3a594726fb547f0e760--modules-ready>","<target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4--modules-ready>","<target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea--modules-ready>","<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--modules-ready>","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--modules-ready>","<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--modules-ready>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--modules-ready>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--modules-ready>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--modules-ready>","<target-Pods-CNLiveIntegralModule_Example-285b96a559574e49fe0e1a40c03a5a8eed0c33fce09051cbc64ad7bd7697dde1-Debug-iphoneos-stale-file-removal>","<CreateBuildDirectory-/tmp/Pods.dst>","<CreateBuildDirectory-/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build>","<CreateBuildDirectory-/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build>"],"outputs":["<target-Pods-CNLiveIntegralModule_Example-285b96a559574e49fe0e1a40c03a5a8eed0c33fce09051cbc64ad7bd7697dde1--begin-compiling>"]}
"Gate target-Pods-CNLiveIntegralModule_Example-285b96a559574e49fe0e1a40c03a5a8eed0c33fce09051cbc64ad7bd7697dde1--end": {"tool":"phony","inputs":["<target-Pods-CNLiveIntegralModule_Example-285b96a559574e49fe0e1a40c03a5a8eed0c33fce09051cbc64ad7bd7697dde1--entry>","<target-Pods-CNLiveIntegralModule_Example-285b96a559574e49fe0e1a40c03a5a8eed0c33fce09051cbc64ad7bd7697dde1--Barrier-ChangeAlternatePermissions>","<target-Pods-CNLiveIntegralModule_Example-285b96a559574e49fe0e1a40c03a5a8eed0c33fce09051cbc64ad7bd7697dde1--Barrier-ChangePermissions>","<target-Pods-CNLiveIntegralModule_Example-285b96a559574e49fe0e1a40c03a5a8eed0c33fce09051cbc64ad7bd7697dde1--Barrier-CodeSign>","<target-Pods-CNLiveIntegralModule_Example-285b96a559574e49fe0e1a40c03a5a8eed0c33fce09051cbc64ad7bd7697dde1--Barrier-CopyAside>","<target-Pods-CNLiveIntegralModule_Example-285b96a559574e49fe0e1a40c03a5a8eed0c33fce09051cbc64ad7bd7697dde1--Barrier-RegisterExecutionPolicyException>","<target-Pods-CNLiveIntegralModule_Example-285b96a559574e49fe0e1a40c03a5a8eed0c33fce09051cbc64ad7bd7697dde1--Barrier-StripSymbols>","<target-Pods-CNLiveIntegralModule_Example-285b96a559574e49fe0e1a40c03a5a8eed0c33fce09051cbc64ad7bd7697dde1--Barrier-Validate>","<target-Pods-CNLiveIntegralModule_Example-285b96a559574e49fe0e1a40c03a5a8eed0c33fce09051cbc64ad7bd7697dde1--GeneratedFilesTaskProducer>","<target-Pods-CNLiveIntegralModule_Example-285b96a559574e49fe0e1a40c03a5a8eed0c33fce09051cbc64ad7bd7697dde1--HeadermapTaskProducer>","<target-Pods-CNLiveIntegralModule_Example-285b96a559574e49fe0e1a40c03a5a8eed0c33fce09051cbc64ad7bd7697dde1--InfoPlistTaskProducer>","<target-Pods-CNLiveIntegralModule_Example-285b96a559574e49fe0e1a40c03a5a8eed0c33fce09051cbc64ad7bd7697dde1--ModuleMapTaskProducer>","<target-Pods-CNLiveIntegralModule_Example-285b96a559574e49fe0e1a40c03a5a8eed0c33fce09051cbc64ad7bd7697dde1--ProductPostprocessingTaskProducer>","<target-Pods-CNLiveIntegralModule_Example-285b96a559574e49fe0e1a40c03a5a8eed0c33fce09051cbc64ad7bd7697dde1--ProductStructureTaskProducer>","<target-Pods-CNLiveIntegralModule_Example-285b96a559574e49fe0e1a40c03a5a8eed0c33fce09051cbc64ad7bd7697dde1--SanitizerTaskProducer>","<target-Pods-CNLiveIntegralModule_Example-285b96a559574e49fe0e1a40c03a5a8eed0c33fce09051cbc64ad7bd7697dde1--StubBinaryTaskProducer>","<target-Pods-CNLiveIntegralModule_Example-285b96a559574e49fe0e1a40c03a5a8eed0c33fce09051cbc64ad7bd7697dde1--SwiftStandardLibrariesTaskProducer>","<target-Pods-CNLiveIntegralModule_Example-285b96a559574e49fe0e1a40c03a5a8eed0c33fce09051cbc64ad7bd7697dde1--TestTargetPostprocessingTaskProducer>","<target-Pods-CNLiveIntegralModule_Example-285b96a559574e49fe0e1a40c03a5a8eed0c33fce09051cbc64ad7bd7697dde1--TestTargetTaskProducer>","<target-Pods-CNLiveIntegralModule_Example-285b96a559574e49fe0e1a40c03a5a8eed0c33fce09051cbc64ad7bd7697dde1--VersionPlistTaskProducer>","<target-Pods-CNLiveIntegralModule_Example-285b96a559574e49fe0e1a40c03a5a8eed0c33fce09051cbc64ad7bd7697dde1--XCFrameworkTaskProducer>","<target-Pods-CNLiveIntegralModule_Example-285b96a559574e49fe0e1a40c03a5a8eed0c33fce09051cbc64ad7bd7697dde1--generated-headers>","<target-Pods-CNLiveIntegralModule_Example-285b96a559574e49fe0e1a40c03a5a8eed0c33fce09051cbc64ad7bd7697dde1--phase0-copy-headers>","<target-Pods-CNLiveIntegralModule_Example-285b96a559574e49fe0e1a40c03a5a8eed0c33fce09051cbc64ad7bd7697dde1--phase1-compile-sources>","<target-Pods-CNLiveIntegralModule_Example-285b96a559574e49fe0e1a40c03a5a8eed0c33fce09051cbc64ad7bd7697dde1--phase3-copy-bundle-resources>","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Example.build/Objects-normal/arm64/Pods-CNLiveIntegralModule_Example-dummy.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Example.build/Objects-normal/arm64/Pods_CNLiveIntegralModule_Example_vers.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Example.build/Objects-normal/armv7/Pods-CNLiveIntegralModule_Example-dummy.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Example.build/Objects-normal/armv7/Pods_CNLiveIntegralModule_Example_vers.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Pods_CNLiveIntegralModule_Example.framework/Headers/Pods-CNLiveIntegralModule_Example-umbrella.h","<Linked Binary /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Pods_CNLiveIntegralModule_Example.framework/Pods_CNLiveIntegralModule_Example>","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Pods_CNLiveIntegralModule_Example.framework/Modules/module.modulemap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Example.build/Objects-normal/arm64/Binary/Pods_CNLiveIntegralModule_Example","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Example.build/Objects-normal/armv7/Binary/Pods_CNLiveIntegralModule_Example","<MkDir /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Pods_CNLiveIntegralModule_Example.framework>","<MkDir /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Pods_CNLiveIntegralModule_Example.framework/Headers>","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Pods_CNLiveIntegralModule_Example.framework/Info.plist","<Touch /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Pods_CNLiveIntegralModule_Example.framework>","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Example.build/DerivedSources/Pods_CNLiveIntegralModule_Example_vers.c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Example.build/Objects-normal/arm64/Pods_CNLiveIntegralModule_Example.LinkFileList","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Example.build/Objects-normal/armv7/Pods_CNLiveIntegralModule_Example.LinkFileList","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Example.build/Pods_CNLiveIntegralModule_Example-all-non-framework-target-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Example.build/Pods_CNLiveIntegralModule_Example-all-target-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Example.build/Pods_CNLiveIntegralModule_Example-generated-files.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Example.build/Pods_CNLiveIntegralModule_Example-own-target-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Example.build/Pods_CNLiveIntegralModule_Example-project-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Example.build/Pods_CNLiveIntegralModule_Example.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Example.build/all-product-headers.yaml","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Example.build/module.modulemap"],"outputs":["<target-Pods-CNLiveIntegralModule_Example-285b96a559574e49fe0e1a40c03a5a8eed0c33fce09051cbc64ad7bd7697dde1--end>"]}
"Gate target-Pods-CNLiveIntegralModule_Example-285b96a559574e49fe0e1a40c03a5a8eed0c33fce09051cbc64ad7bd7697dde1--entry": {"tool":"phony","inputs":["<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--end>","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--end>","<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--end>","<target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9--end>","<target-CNLiveEnvironment-285b96a559574e49fe0e1a40c03a5a8e61e9c7c4a29ad91844f8d551bbfe0deb--end>","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--end>","<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--end>","<target-CNLiveServices-285b96a559574e49fe0e1a40c03a5a8e91d5e9d88631ee0f0e480b2efaa1542a--end>","<target-CNLiveTripartiteManagement-285b96a559574e49fe0e1a40c03a5a8ec69cdcecdf4ee3a594726fb547f0e760--end>","<target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4--end>","<target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea--end>","<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--end>","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--end>","<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--end>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--end>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--end>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--end>","<target-Pods-CNLiveIntegralModule_Example-285b96a559574e49fe0e1a40c03a5a8eed0c33fce09051cbc64ad7bd7697dde1-Debug-iphoneos-stale-file-removal>","<CreateBuildDirectory-/tmp/Pods.dst>","<CreateBuildDirectory-/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build>","<CreateBuildDirectory-/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build>","<target-Pods-CNLiveIntegralModule_Example-285b96a559574e49fe0e1a40c03a5a8eed0c33fce09051cbc64ad7bd7697dde1--begin-compiling>"],"outputs":["<target-Pods-CNLiveIntegralModule_Example-285b96a559574e49fe0e1a40c03a5a8eed0c33fce09051cbc64ad7bd7697dde1--entry>"]}
"Gate target-Pods-CNLiveIntegralModule_Example-285b96a559574e49fe0e1a40c03a5a8eed0c33fce09051cbc64ad7bd7697dde1--generated-headers": {"tool":"phony","inputs":["<target-Pods-CNLiveIntegralModule_Example-285b96a559574e49fe0e1a40c03a5a8eed0c33fce09051cbc64ad7bd7697dde1--begin-compiling>"],"outputs":["<target-Pods-CNLiveIntegralModule_Example-285b96a559574e49fe0e1a40c03a5a8eed0c33fce09051cbc64ad7bd7697dde1--generated-headers>"]}
"Gate target-Pods-CNLiveIntegralModule_Example-285b96a559574e49fe0e1a40c03a5a8eed0c33fce09051cbc64ad7bd7697dde1--immediate": {"tool":"phony","inputs":["<target-Pods-CNLiveIntegralModule_Example-285b96a559574e49fe0e1a40c03a5a8eed0c33fce09051cbc64ad7bd7697dde1-Debug-iphoneos-stale-file-removal>","<CreateBuildDirectory-/tmp/Pods.dst>","<CreateBuildDirectory-/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build>","<CreateBuildDirectory-/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build>"],"outputs":["<target-Pods-CNLiveIntegralModule_Example-285b96a559574e49fe0e1a40c03a5a8eed0c33fce09051cbc64ad7bd7697dde1--immediate>"]}
"Gate target-Pods-CNLiveIntegralModule_Example-285b96a559574e49fe0e1a40c03a5a8eed0c33fce09051cbc64ad7bd7697dde1--modules-ready": {"tool":"phony","inputs":["<target-Pods-CNLiveIntegralModule_Example-285b96a559574e49fe0e1a40c03a5a8eed0c33fce09051cbc64ad7bd7697dde1--begin-compiling>","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Example.build/Objects-normal/arm64/Pods-CNLiveIntegralModule_Example-dummy.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Example.build/Objects-normal/arm64/Pods_CNLiveIntegralModule_Example_vers.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Example.build/Objects-normal/armv7/Pods-CNLiveIntegralModule_Example-dummy.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Example.build/Objects-normal/armv7/Pods_CNLiveIntegralModule_Example_vers.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Pods_CNLiveIntegralModule_Example.framework/Headers/Pods-CNLiveIntegralModule_Example-umbrella.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Example.build/DerivedSources/Pods_CNLiveIntegralModule_Example_vers.c"],"outputs":["<target-Pods-CNLiveIntegralModule_Example-285b96a559574e49fe0e1a40c03a5a8eed0c33fce09051cbc64ad7bd7697dde1--modules-ready>"]}
"Gate target-Pods-CNLiveIntegralModule_Example-285b96a559574e49fe0e1a40c03a5a8eed0c33fce09051cbc64ad7bd7697dde1--phase0-copy-headers": {"tool":"phony","inputs":["<target-Pods-CNLiveIntegralModule_Example-285b96a559574e49fe0e1a40c03a5a8eed0c33fce09051cbc64ad7bd7697dde1--HeadermapTaskProducer>","<target-Pods-CNLiveIntegralModule_Example-285b96a559574e49fe0e1a40c03a5a8eed0c33fce09051cbc64ad7bd7697dde1--begin-compiling>","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Pods_CNLiveIntegralModule_Example.framework/Headers/Pods-CNLiveIntegralModule_Example-umbrella.h"],"outputs":["<target-Pods-CNLiveIntegralModule_Example-285b96a559574e49fe0e1a40c03a5a8eed0c33fce09051cbc64ad7bd7697dde1--phase0-copy-headers>"]}
"Gate target-Pods-CNLiveIntegralModule_Example-285b96a559574e49fe0e1a40c03a5a8eed0c33fce09051cbc64ad7bd7697dde1--phase1-compile-sources": {"tool":"phony","inputs":["<target-Pods-CNLiveIntegralModule_Example-285b96a559574e49fe0e1a40c03a5a8eed0c33fce09051cbc64ad7bd7697dde1--phase0-copy-headers>","<target-Pods-CNLiveIntegralModule_Example-285b96a559574e49fe0e1a40c03a5a8eed0c33fce09051cbc64ad7bd7697dde1--begin-compiling>","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Example.build/Objects-normal/arm64/Pods-CNLiveIntegralModule_Example-dummy.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Example.build/Objects-normal/arm64/Pods_CNLiveIntegralModule_Example_vers.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Example.build/Objects-normal/armv7/Pods-CNLiveIntegralModule_Example-dummy.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Example.build/Objects-normal/armv7/Pods_CNLiveIntegralModule_Example_vers.o","<Linked Binary /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Pods_CNLiveIntegralModule_Example.framework/Pods_CNLiveIntegralModule_Example>","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Example.build/Objects-normal/arm64/Binary/Pods_CNLiveIntegralModule_Example","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Example.build/Objects-normal/armv7/Binary/Pods_CNLiveIntegralModule_Example","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Example.build/DerivedSources/Pods_CNLiveIntegralModule_Example_vers.c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Example.build/Objects-normal/arm64/Pods_CNLiveIntegralModule_Example.LinkFileList","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Example.build/Objects-normal/armv7/Pods_CNLiveIntegralModule_Example.LinkFileList"],"outputs":["<target-Pods-CNLiveIntegralModule_Example-285b96a559574e49fe0e1a40c03a5a8eed0c33fce09051cbc64ad7bd7697dde1--phase1-compile-sources>"]}
"Gate target-Pods-CNLiveIntegralModule_Example-285b96a559574e49fe0e1a40c03a5a8eed0c33fce09051cbc64ad7bd7697dde1--phase3-copy-bundle-resources": {"tool":"phony","inputs":["<target-Pods-CNLiveIntegralModule_Example-285b96a559574e49fe0e1a40c03a5a8eed0c33fce09051cbc64ad7bd7697dde1--phase1-compile-sources>","<target-Pods-CNLiveIntegralModule_Example-285b96a559574e49fe0e1a40c03a5a8eed0c33fce09051cbc64ad7bd7697dde1--begin-compiling>"],"outputs":["<target-Pods-CNLiveIntegralModule_Example-285b96a559574e49fe0e1a40c03a5a8eed0c33fce09051cbc64ad7bd7697dde1--phase3-copy-bundle-resources>"]}
"Gate target-Pods-CNLiveIntegralModule_Tests-285b96a559574e49fe0e1a40c03a5a8e0dc92816745535329b7fd5143160da4d--Barrier-ChangeAlternatePermissions": {"tool":"phony","inputs":["<target-Pods-CNLiveIntegralModule_Tests-285b96a559574e49fe0e1a40c03a5a8e0dc92816745535329b7fd5143160da4d--Barrier-ChangePermissions>","<target-Pods-CNLiveIntegralModule_Tests-285b96a559574e49fe0e1a40c03a5a8e0dc92816745535329b7fd5143160da4d--begin-compiling>"],"outputs":["<target-Pods-CNLiveIntegralModule_Tests-285b96a559574e49fe0e1a40c03a5a8e0dc92816745535329b7fd5143160da4d--Barrier-ChangeAlternatePermissions>"]}
"Gate target-Pods-CNLiveIntegralModule_Tests-285b96a559574e49fe0e1a40c03a5a8e0dc92816745535329b7fd5143160da4d--Barrier-ChangePermissions": {"tool":"phony","inputs":["<target-Pods-CNLiveIntegralModule_Tests-285b96a559574e49fe0e1a40c03a5a8e0dc92816745535329b7fd5143160da4d--Barrier-StripSymbols>","<target-Pods-CNLiveIntegralModule_Tests-285b96a559574e49fe0e1a40c03a5a8e0dc92816745535329b7fd5143160da4d--begin-compiling>"],"outputs":["<target-Pods-CNLiveIntegralModule_Tests-285b96a559574e49fe0e1a40c03a5a8e0dc92816745535329b7fd5143160da4d--Barrier-ChangePermissions>"]}
"Gate target-Pods-CNLiveIntegralModule_Tests-285b96a559574e49fe0e1a40c03a5a8e0dc92816745535329b7fd5143160da4d--Barrier-CodeSign": {"tool":"phony","inputs":["<target-Pods-CNLiveIntegralModule_Tests-285b96a559574e49fe0e1a40c03a5a8e0dc92816745535329b7fd5143160da4d--Barrier-ChangeAlternatePermissions>","<target-Pods-CNLiveIntegralModule_Tests-285b96a559574e49fe0e1a40c03a5a8e0dc92816745535329b7fd5143160da4d--begin-compiling>"],"outputs":["<target-Pods-CNLiveIntegralModule_Tests-285b96a559574e49fe0e1a40c03a5a8e0dc92816745535329b7fd5143160da4d--Barrier-CodeSign>"]}
"Gate target-Pods-CNLiveIntegralModule_Tests-285b96a559574e49fe0e1a40c03a5a8e0dc92816745535329b7fd5143160da4d--Barrier-CopyAside": {"tool":"phony","inputs":["<target-Pods-CNLiveIntegralModule_Tests-285b96a559574e49fe0e1a40c03a5a8e0dc92816745535329b7fd5143160da4d--ProductPostprocessingTaskProducer>","<target-Pods-CNLiveIntegralModule_Tests-285b96a559574e49fe0e1a40c03a5a8e0dc92816745535329b7fd5143160da4d--begin-compiling>"],"outputs":["<target-Pods-CNLiveIntegralModule_Tests-285b96a559574e49fe0e1a40c03a5a8e0dc92816745535329b7fd5143160da4d--Barrier-CopyAside>"]}
"Gate target-Pods-CNLiveIntegralModule_Tests-285b96a559574e49fe0e1a40c03a5a8e0dc92816745535329b7fd5143160da4d--Barrier-RegisterExecutionPolicyException": {"tool":"phony","inputs":["<target-Pods-CNLiveIntegralModule_Tests-285b96a559574e49fe0e1a40c03a5a8e0dc92816745535329b7fd5143160da4d--Barrier-CodeSign>","<target-Pods-CNLiveIntegralModule_Tests-285b96a559574e49fe0e1a40c03a5a8e0dc92816745535329b7fd5143160da4d--begin-compiling>"],"outputs":["<target-Pods-CNLiveIntegralModule_Tests-285b96a559574e49fe0e1a40c03a5a8e0dc92816745535329b7fd5143160da4d--Barrier-RegisterExecutionPolicyException>"]}
"Gate target-Pods-CNLiveIntegralModule_Tests-285b96a559574e49fe0e1a40c03a5a8e0dc92816745535329b7fd5143160da4d--Barrier-StripSymbols": {"tool":"phony","inputs":["<target-Pods-CNLiveIntegralModule_Tests-285b96a559574e49fe0e1a40c03a5a8e0dc92816745535329b7fd5143160da4d--Barrier-CopyAside>","<target-Pods-CNLiveIntegralModule_Tests-285b96a559574e49fe0e1a40c03a5a8e0dc92816745535329b7fd5143160da4d--begin-compiling>"],"outputs":["<target-Pods-CNLiveIntegralModule_Tests-285b96a559574e49fe0e1a40c03a5a8e0dc92816745535329b7fd5143160da4d--Barrier-StripSymbols>"]}
"Gate target-Pods-CNLiveIntegralModule_Tests-285b96a559574e49fe0e1a40c03a5a8e0dc92816745535329b7fd5143160da4d--Barrier-Validate": {"tool":"phony","inputs":["<target-Pods-CNLiveIntegralModule_Tests-285b96a559574e49fe0e1a40c03a5a8e0dc92816745535329b7fd5143160da4d--Barrier-RegisterExecutionPolicyException>","<target-Pods-CNLiveIntegralModule_Tests-285b96a559574e49fe0e1a40c03a5a8e0dc92816745535329b7fd5143160da4d--begin-compiling>","<Touch /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Pods_CNLiveIntegralModule_Tests.framework>"],"outputs":["<target-Pods-CNLiveIntegralModule_Tests-285b96a559574e49fe0e1a40c03a5a8e0dc92816745535329b7fd5143160da4d--Barrier-Validate>"]}
"Gate target-Pods-CNLiveIntegralModule_Tests-285b96a559574e49fe0e1a40c03a5a8e0dc92816745535329b7fd5143160da4d--GeneratedFilesTaskProducer": {"tool":"phony","inputs":["<target-Pods-CNLiveIntegralModule_Tests-285b96a559574e49fe0e1a40c03a5a8e0dc92816745535329b7fd5143160da4d--XCFrameworkTaskProducer>","<target-Pods-CNLiveIntegralModule_Tests-285b96a559574e49fe0e1a40c03a5a8e0dc92816745535329b7fd5143160da4d--begin-compiling>"],"outputs":["<target-Pods-CNLiveIntegralModule_Tests-285b96a559574e49fe0e1a40c03a5a8e0dc92816745535329b7fd5143160da4d--GeneratedFilesTaskProducer>"]}
"Gate target-Pods-CNLiveIntegralModule_Tests-285b96a559574e49fe0e1a40c03a5a8e0dc92816745535329b7fd5143160da4d--HeadermapTaskProducer": {"tool":"phony","inputs":["<target-Pods-CNLiveIntegralModule_Tests-285b96a559574e49fe0e1a40c03a5a8e0dc92816745535329b7fd5143160da4d--GeneratedFilesTaskProducer>","<target-Pods-CNLiveIntegralModule_Tests-285b96a559574e49fe0e1a40c03a5a8e0dc92816745535329b7fd5143160da4d--begin-compiling>","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Tests.build/Pods_CNLiveIntegralModule_Tests-all-non-framework-target-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Tests.build/Pods_CNLiveIntegralModule_Tests-all-target-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Tests.build/Pods_CNLiveIntegralModule_Tests-generated-files.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Tests.build/Pods_CNLiveIntegralModule_Tests-own-target-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Tests.build/Pods_CNLiveIntegralModule_Tests-project-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Tests.build/Pods_CNLiveIntegralModule_Tests.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Tests.build/all-product-headers.yaml"],"outputs":["<target-Pods-CNLiveIntegralModule_Tests-285b96a559574e49fe0e1a40c03a5a8e0dc92816745535329b7fd5143160da4d--HeadermapTaskProducer>"]}
"Gate target-Pods-CNLiveIntegralModule_Tests-285b96a559574e49fe0e1a40c03a5a8e0dc92816745535329b7fd5143160da4d--InfoPlistTaskProducer": {"tool":"phony","inputs":["<target-Pods-CNLiveIntegralModule_Tests-285b96a559574e49fe0e1a40c03a5a8e0dc92816745535329b7fd5143160da4d--HeadermapTaskProducer>","<target-Pods-CNLiveIntegralModule_Tests-285b96a559574e49fe0e1a40c03a5a8e0dc92816745535329b7fd5143160da4d--begin-compiling>","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Pods_CNLiveIntegralModule_Tests.framework/Info.plist"],"outputs":["<target-Pods-CNLiveIntegralModule_Tests-285b96a559574e49fe0e1a40c03a5a8e0dc92816745535329b7fd5143160da4d--InfoPlistTaskProducer>"]}
"Gate target-Pods-CNLiveIntegralModule_Tests-285b96a559574e49fe0e1a40c03a5a8e0dc92816745535329b7fd5143160da4d--ModuleMapTaskProducer": {"tool":"phony","inputs":["<target-Pods-CNLiveIntegralModule_Tests-285b96a559574e49fe0e1a40c03a5a8e0dc92816745535329b7fd5143160da4d--HeadermapTaskProducer>","<target-Pods-CNLiveIntegralModule_Tests-285b96a559574e49fe0e1a40c03a5a8e0dc92816745535329b7fd5143160da4d--begin-compiling>","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Pods_CNLiveIntegralModule_Tests.framework/Modules/module.modulemap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Tests.build/module.modulemap"],"outputs":["<target-Pods-CNLiveIntegralModule_Tests-285b96a559574e49fe0e1a40c03a5a8e0dc92816745535329b7fd5143160da4d--ModuleMapTaskProducer>"]}
"Gate target-Pods-CNLiveIntegralModule_Tests-285b96a559574e49fe0e1a40c03a5a8e0dc92816745535329b7fd5143160da4d--ProductPostprocessingTaskProducer": {"tool":"phony","inputs":["<target-Pods-CNLiveIntegralModule_Tests-285b96a559574e49fe0e1a40c03a5a8e0dc92816745535329b7fd5143160da4d--HeadermapTaskProducer>","<target-Pods-CNLiveIntegralModule_Tests-285b96a559574e49fe0e1a40c03a5a8e0dc92816745535329b7fd5143160da4d--phase3-copy-bundle-resources>","<target-Pods-CNLiveIntegralModule_Tests-285b96a559574e49fe0e1a40c03a5a8e0dc92816745535329b7fd5143160da4d--InfoPlistTaskProducer>","<target-Pods-CNLiveIntegralModule_Tests-285b96a559574e49fe0e1a40c03a5a8e0dc92816745535329b7fd5143160da4d--VersionPlistTaskProducer>","<target-Pods-CNLiveIntegralModule_Tests-285b96a559574e49fe0e1a40c03a5a8e0dc92816745535329b7fd5143160da4d--SanitizerTaskProducer>","<target-Pods-CNLiveIntegralModule_Tests-285b96a559574e49fe0e1a40c03a5a8e0dc92816745535329b7fd5143160da4d--ModuleMapTaskProducer>","<target-Pods-CNLiveIntegralModule_Tests-285b96a559574e49fe0e1a40c03a5a8e0dc92816745535329b7fd5143160da4d--SwiftStandardLibrariesTaskProducer>","<target-Pods-CNLiveIntegralModule_Tests-285b96a559574e49fe0e1a40c03a5a8e0dc92816745535329b7fd5143160da4d--StubBinaryTaskProducer>","<target-Pods-CNLiveIntegralModule_Tests-285b96a559574e49fe0e1a40c03a5a8e0dc92816745535329b7fd5143160da4d--TestTargetTaskProducer>","<target-Pods-CNLiveIntegralModule_Tests-285b96a559574e49fe0e1a40c03a5a8e0dc92816745535329b7fd5143160da4d--begin-compiling>"],"outputs":["<target-Pods-CNLiveIntegralModule_Tests-285b96a559574e49fe0e1a40c03a5a8e0dc92816745535329b7fd5143160da4d--ProductPostprocessingTaskProducer>"]}
"Gate target-Pods-CNLiveIntegralModule_Tests-285b96a559574e49fe0e1a40c03a5a8e0dc92816745535329b7fd5143160da4d--ProductStructureTaskProducer": {"tool":"phony","inputs":["<target-Pods-CNLiveIntegralModule_Tests-285b96a559574e49fe0e1a40c03a5a8e0dc92816745535329b7fd5143160da4d--start>","<target-Pods-CNLiveIntegralModule_Tests-285b96a559574e49fe0e1a40c03a5a8e0dc92816745535329b7fd5143160da4d--begin-compiling>","<MkDir /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Pods_CNLiveIntegralModule_Tests.framework>","<MkDir /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Pods_CNLiveIntegralModule_Tests.framework/Headers>"],"outputs":["<target-Pods-CNLiveIntegralModule_Tests-285b96a559574e49fe0e1a40c03a5a8e0dc92816745535329b7fd5143160da4d--ProductStructureTaskProducer>"]}
"Gate target-Pods-CNLiveIntegralModule_Tests-285b96a559574e49fe0e1a40c03a5a8e0dc92816745535329b7fd5143160da4d--SanitizerTaskProducer": {"tool":"phony","inputs":["<target-Pods-CNLiveIntegralModule_Tests-285b96a559574e49fe0e1a40c03a5a8e0dc92816745535329b7fd5143160da4d--HeadermapTaskProducer>","<target-Pods-CNLiveIntegralModule_Tests-285b96a559574e49fe0e1a40c03a5a8e0dc92816745535329b7fd5143160da4d--begin-compiling>"],"outputs":["<target-Pods-CNLiveIntegralModule_Tests-285b96a559574e49fe0e1a40c03a5a8e0dc92816745535329b7fd5143160da4d--SanitizerTaskProducer>"]}
"Gate target-Pods-CNLiveIntegralModule_Tests-285b96a559574e49fe0e1a40c03a5a8e0dc92816745535329b7fd5143160da4d--StubBinaryTaskProducer": {"tool":"phony","inputs":["<target-Pods-CNLiveIntegralModule_Tests-285b96a559574e49fe0e1a40c03a5a8e0dc92816745535329b7fd5143160da4d--HeadermapTaskProducer>","<target-Pods-CNLiveIntegralModule_Tests-285b96a559574e49fe0e1a40c03a5a8e0dc92816745535329b7fd5143160da4d--begin-compiling>"],"outputs":["<target-Pods-CNLiveIntegralModule_Tests-285b96a559574e49fe0e1a40c03a5a8e0dc92816745535329b7fd5143160da4d--StubBinaryTaskProducer>"]}
"Gate target-Pods-CNLiveIntegralModule_Tests-285b96a559574e49fe0e1a40c03a5a8e0dc92816745535329b7fd5143160da4d--SwiftStandardLibrariesTaskProducer": {"tool":"phony","inputs":["<target-Pods-CNLiveIntegralModule_Tests-285b96a559574e49fe0e1a40c03a5a8e0dc92816745535329b7fd5143160da4d--HeadermapTaskProducer>","<target-Pods-CNLiveIntegralModule_Tests-285b96a559574e49fe0e1a40c03a5a8e0dc92816745535329b7fd5143160da4d--phase3-copy-bundle-resources>","<target-Pods-CNLiveIntegralModule_Tests-285b96a559574e49fe0e1a40c03a5a8e0dc92816745535329b7fd5143160da4d--begin-compiling>"],"outputs":["<target-Pods-CNLiveIntegralModule_Tests-285b96a559574e49fe0e1a40c03a5a8e0dc92816745535329b7fd5143160da4d--SwiftStandardLibrariesTaskProducer>"]}
"Gate target-Pods-CNLiveIntegralModule_Tests-285b96a559574e49fe0e1a40c03a5a8e0dc92816745535329b7fd5143160da4d--TestTargetPostprocessingTaskProducer": {"tool":"phony","inputs":["<target-Pods-CNLiveIntegralModule_Tests-285b96a559574e49fe0e1a40c03a5a8e0dc92816745535329b7fd5143160da4d--ProductPostprocessingTaskProducer>","<target-Pods-CNLiveIntegralModule_Tests-285b96a559574e49fe0e1a40c03a5a8e0dc92816745535329b7fd5143160da4d--begin-compiling>"],"outputs":["<target-Pods-CNLiveIntegralModule_Tests-285b96a559574e49fe0e1a40c03a5a8e0dc92816745535329b7fd5143160da4d--TestTargetPostprocessingTaskProducer>"]}
"Gate target-Pods-CNLiveIntegralModule_Tests-285b96a559574e49fe0e1a40c03a5a8e0dc92816745535329b7fd5143160da4d--TestTargetTaskProducer": {"tool":"phony","inputs":["<target-Pods-CNLiveIntegralModule_Tests-285b96a559574e49fe0e1a40c03a5a8e0dc92816745535329b7fd5143160da4d--HeadermapTaskProducer>","<target-Pods-CNLiveIntegralModule_Tests-285b96a559574e49fe0e1a40c03a5a8e0dc92816745535329b7fd5143160da4d--begin-compiling>"],"outputs":["<target-Pods-CNLiveIntegralModule_Tests-285b96a559574e49fe0e1a40c03a5a8e0dc92816745535329b7fd5143160da4d--TestTargetTaskProducer>"]}
"Gate target-Pods-CNLiveIntegralModule_Tests-285b96a559574e49fe0e1a40c03a5a8e0dc92816745535329b7fd5143160da4d--VersionPlistTaskProducer": {"tool":"phony","inputs":["<target-Pods-CNLiveIntegralModule_Tests-285b96a559574e49fe0e1a40c03a5a8e0dc92816745535329b7fd5143160da4d--HeadermapTaskProducer>","<target-Pods-CNLiveIntegralModule_Tests-285b96a559574e49fe0e1a40c03a5a8e0dc92816745535329b7fd5143160da4d--begin-compiling>"],"outputs":["<target-Pods-CNLiveIntegralModule_Tests-285b96a559574e49fe0e1a40c03a5a8e0dc92816745535329b7fd5143160da4d--VersionPlistTaskProducer>"]}
"Gate target-Pods-CNLiveIntegralModule_Tests-285b96a559574e49fe0e1a40c03a5a8e0dc92816745535329b7fd5143160da4d--XCFrameworkTaskProducer": {"tool":"phony","inputs":["<target-Pods-CNLiveIntegralModule_Tests-285b96a559574e49fe0e1a40c03a5a8e0dc92816745535329b7fd5143160da4d--ProductStructureTaskProducer>","<target-Pods-CNLiveIntegralModule_Tests-285b96a559574e49fe0e1a40c03a5a8e0dc92816745535329b7fd5143160da4d--begin-compiling>"],"outputs":["<target-Pods-CNLiveIntegralModule_Tests-285b96a559574e49fe0e1a40c03a5a8e0dc92816745535329b7fd5143160da4d--XCFrameworkTaskProducer>"]}
"Gate target-Pods-CNLiveIntegralModule_Tests-285b96a559574e49fe0e1a40c03a5a8e0dc92816745535329b7fd5143160da4d--begin-compiling": {"tool":"phony","inputs":["<target-Pods-CNLiveIntegralModule_Example-285b96a559574e49fe0e1a40c03a5a8eed0c33fce09051cbc64ad7bd7697dde1--modules-ready>","<target-Pods-CNLiveIntegralModule_Tests-285b96a559574e49fe0e1a40c03a5a8e0dc92816745535329b7fd5143160da4d-Debug-iphoneos-stale-file-removal>","<CreateBuildDirectory-/tmp/Pods.dst>","<CreateBuildDirectory-/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build>","<CreateBuildDirectory-/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build>"],"outputs":["<target-Pods-CNLiveIntegralModule_Tests-285b96a559574e49fe0e1a40c03a5a8e0dc92816745535329b7fd5143160da4d--begin-compiling>"]}
"Gate target-Pods-CNLiveIntegralModule_Tests-285b96a559574e49fe0e1a40c03a5a8e0dc92816745535329b7fd5143160da4d--end": {"tool":"phony","inputs":["<target-Pods-CNLiveIntegralModule_Tests-285b96a559574e49fe0e1a40c03a5a8e0dc92816745535329b7fd5143160da4d--entry>","<target-Pods-CNLiveIntegralModule_Tests-285b96a559574e49fe0e1a40c03a5a8e0dc92816745535329b7fd5143160da4d--Barrier-ChangeAlternatePermissions>","<target-Pods-CNLiveIntegralModule_Tests-285b96a559574e49fe0e1a40c03a5a8e0dc92816745535329b7fd5143160da4d--Barrier-ChangePermissions>","<target-Pods-CNLiveIntegralModule_Tests-285b96a559574e49fe0e1a40c03a5a8e0dc92816745535329b7fd5143160da4d--Barrier-CodeSign>","<target-Pods-CNLiveIntegralModule_Tests-285b96a559574e49fe0e1a40c03a5a8e0dc92816745535329b7fd5143160da4d--Barrier-CopyAside>","<target-Pods-CNLiveIntegralModule_Tests-285b96a559574e49fe0e1a40c03a5a8e0dc92816745535329b7fd5143160da4d--Barrier-RegisterExecutionPolicyException>","<target-Pods-CNLiveIntegralModule_Tests-285b96a559574e49fe0e1a40c03a5a8e0dc92816745535329b7fd5143160da4d--Barrier-StripSymbols>","<target-Pods-CNLiveIntegralModule_Tests-285b96a559574e49fe0e1a40c03a5a8e0dc92816745535329b7fd5143160da4d--Barrier-Validate>","<target-Pods-CNLiveIntegralModule_Tests-285b96a559574e49fe0e1a40c03a5a8e0dc92816745535329b7fd5143160da4d--GeneratedFilesTaskProducer>","<target-Pods-CNLiveIntegralModule_Tests-285b96a559574e49fe0e1a40c03a5a8e0dc92816745535329b7fd5143160da4d--HeadermapTaskProducer>","<target-Pods-CNLiveIntegralModule_Tests-285b96a559574e49fe0e1a40c03a5a8e0dc92816745535329b7fd5143160da4d--InfoPlistTaskProducer>","<target-Pods-CNLiveIntegralModule_Tests-285b96a559574e49fe0e1a40c03a5a8e0dc92816745535329b7fd5143160da4d--ModuleMapTaskProducer>","<target-Pods-CNLiveIntegralModule_Tests-285b96a559574e49fe0e1a40c03a5a8e0dc92816745535329b7fd5143160da4d--ProductPostprocessingTaskProducer>","<target-Pods-CNLiveIntegralModule_Tests-285b96a559574e49fe0e1a40c03a5a8e0dc92816745535329b7fd5143160da4d--ProductStructureTaskProducer>","<target-Pods-CNLiveIntegralModule_Tests-285b96a559574e49fe0e1a40c03a5a8e0dc92816745535329b7fd5143160da4d--SanitizerTaskProducer>","<target-Pods-CNLiveIntegralModule_Tests-285b96a559574e49fe0e1a40c03a5a8e0dc92816745535329b7fd5143160da4d--StubBinaryTaskProducer>","<target-Pods-CNLiveIntegralModule_Tests-285b96a559574e49fe0e1a40c03a5a8e0dc92816745535329b7fd5143160da4d--SwiftStandardLibrariesTaskProducer>","<target-Pods-CNLiveIntegralModule_Tests-285b96a559574e49fe0e1a40c03a5a8e0dc92816745535329b7fd5143160da4d--TestTargetPostprocessingTaskProducer>","<target-Pods-CNLiveIntegralModule_Tests-285b96a559574e49fe0e1a40c03a5a8e0dc92816745535329b7fd5143160da4d--TestTargetTaskProducer>","<target-Pods-CNLiveIntegralModule_Tests-285b96a559574e49fe0e1a40c03a5a8e0dc92816745535329b7fd5143160da4d--VersionPlistTaskProducer>","<target-Pods-CNLiveIntegralModule_Tests-285b96a559574e49fe0e1a40c03a5a8e0dc92816745535329b7fd5143160da4d--XCFrameworkTaskProducer>","<target-Pods-CNLiveIntegralModule_Tests-285b96a559574e49fe0e1a40c03a5a8e0dc92816745535329b7fd5143160da4d--generated-headers>","<target-Pods-CNLiveIntegralModule_Tests-285b96a559574e49fe0e1a40c03a5a8e0dc92816745535329b7fd5143160da4d--phase0-copy-headers>","<target-Pods-CNLiveIntegralModule_Tests-285b96a559574e49fe0e1a40c03a5a8e0dc92816745535329b7fd5143160da4d--phase1-compile-sources>","<target-Pods-CNLiveIntegralModule_Tests-285b96a559574e49fe0e1a40c03a5a8e0dc92816745535329b7fd5143160da4d--phase3-copy-bundle-resources>","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Tests.build/Objects-normal/arm64/Pods-CNLiveIntegralModule_Tests-dummy.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Tests.build/Objects-normal/arm64/Pods_CNLiveIntegralModule_Tests_vers.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Tests.build/Objects-normal/armv7/Pods-CNLiveIntegralModule_Tests-dummy.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Tests.build/Objects-normal/armv7/Pods_CNLiveIntegralModule_Tests_vers.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Pods_CNLiveIntegralModule_Tests.framework/Headers/Pods-CNLiveIntegralModule_Tests-umbrella.h","<Linked Binary /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Pods_CNLiveIntegralModule_Tests.framework/Pods_CNLiveIntegralModule_Tests>","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Pods_CNLiveIntegralModule_Tests.framework/Modules/module.modulemap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Tests.build/Objects-normal/arm64/Binary/Pods_CNLiveIntegralModule_Tests","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Tests.build/Objects-normal/armv7/Binary/Pods_CNLiveIntegralModule_Tests","<MkDir /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Pods_CNLiveIntegralModule_Tests.framework>","<MkDir /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Pods_CNLiveIntegralModule_Tests.framework/Headers>","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Pods_CNLiveIntegralModule_Tests.framework/Info.plist","<Touch /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Pods_CNLiveIntegralModule_Tests.framework>","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Tests.build/DerivedSources/Pods_CNLiveIntegralModule_Tests_vers.c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Tests.build/Objects-normal/arm64/Pods_CNLiveIntegralModule_Tests.LinkFileList","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Tests.build/Objects-normal/armv7/Pods_CNLiveIntegralModule_Tests.LinkFileList","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Tests.build/Pods_CNLiveIntegralModule_Tests-all-non-framework-target-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Tests.build/Pods_CNLiveIntegralModule_Tests-all-target-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Tests.build/Pods_CNLiveIntegralModule_Tests-generated-files.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Tests.build/Pods_CNLiveIntegralModule_Tests-own-target-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Tests.build/Pods_CNLiveIntegralModule_Tests-project-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Tests.build/Pods_CNLiveIntegralModule_Tests.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Tests.build/all-product-headers.yaml","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Tests.build/module.modulemap"],"outputs":["<target-Pods-CNLiveIntegralModule_Tests-285b96a559574e49fe0e1a40c03a5a8e0dc92816745535329b7fd5143160da4d--end>"]}
"Gate target-Pods-CNLiveIntegralModule_Tests-285b96a559574e49fe0e1a40c03a5a8e0dc92816745535329b7fd5143160da4d--entry": {"tool":"phony","inputs":["<target-Pods-CNLiveIntegralModule_Example-285b96a559574e49fe0e1a40c03a5a8eed0c33fce09051cbc64ad7bd7697dde1--end>","<target-Pods-CNLiveIntegralModule_Tests-285b96a559574e49fe0e1a40c03a5a8e0dc92816745535329b7fd5143160da4d-Debug-iphoneos-stale-file-removal>","<CreateBuildDirectory-/tmp/Pods.dst>","<CreateBuildDirectory-/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build>","<CreateBuildDirectory-/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build>","<target-Pods-CNLiveIntegralModule_Tests-285b96a559574e49fe0e1a40c03a5a8e0dc92816745535329b7fd5143160da4d--begin-compiling>"],"outputs":["<target-Pods-CNLiveIntegralModule_Tests-285b96a559574e49fe0e1a40c03a5a8e0dc92816745535329b7fd5143160da4d--entry>"]}
"Gate target-Pods-CNLiveIntegralModule_Tests-285b96a559574e49fe0e1a40c03a5a8e0dc92816745535329b7fd5143160da4d--generated-headers": {"tool":"phony","inputs":["<target-Pods-CNLiveIntegralModule_Tests-285b96a559574e49fe0e1a40c03a5a8e0dc92816745535329b7fd5143160da4d--begin-compiling>"],"outputs":["<target-Pods-CNLiveIntegralModule_Tests-285b96a559574e49fe0e1a40c03a5a8e0dc92816745535329b7fd5143160da4d--generated-headers>"]}
"Gate target-Pods-CNLiveIntegralModule_Tests-285b96a559574e49fe0e1a40c03a5a8e0dc92816745535329b7fd5143160da4d--immediate": {"tool":"phony","inputs":["<target-Pods-CNLiveIntegralModule_Tests-285b96a559574e49fe0e1a40c03a5a8e0dc92816745535329b7fd5143160da4d-Debug-iphoneos-stale-file-removal>","<CreateBuildDirectory-/tmp/Pods.dst>","<CreateBuildDirectory-/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build>","<CreateBuildDirectory-/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build>"],"outputs":["<target-Pods-CNLiveIntegralModule_Tests-285b96a559574e49fe0e1a40c03a5a8e0dc92816745535329b7fd5143160da4d--immediate>"]}
"Gate target-Pods-CNLiveIntegralModule_Tests-285b96a559574e49fe0e1a40c03a5a8e0dc92816745535329b7fd5143160da4d--modules-ready": {"tool":"phony","inputs":["<target-Pods-CNLiveIntegralModule_Tests-285b96a559574e49fe0e1a40c03a5a8e0dc92816745535329b7fd5143160da4d--begin-compiling>","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Tests.build/Objects-normal/arm64/Pods-CNLiveIntegralModule_Tests-dummy.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Tests.build/Objects-normal/arm64/Pods_CNLiveIntegralModule_Tests_vers.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Tests.build/Objects-normal/armv7/Pods-CNLiveIntegralModule_Tests-dummy.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Tests.build/Objects-normal/armv7/Pods_CNLiveIntegralModule_Tests_vers.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Pods_CNLiveIntegralModule_Tests.framework/Headers/Pods-CNLiveIntegralModule_Tests-umbrella.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Tests.build/DerivedSources/Pods_CNLiveIntegralModule_Tests_vers.c"],"outputs":["<target-Pods-CNLiveIntegralModule_Tests-285b96a559574e49fe0e1a40c03a5a8e0dc92816745535329b7fd5143160da4d--modules-ready>"]}
"Gate target-Pods-CNLiveIntegralModule_Tests-285b96a559574e49fe0e1a40c03a5a8e0dc92816745535329b7fd5143160da4d--phase0-copy-headers": {"tool":"phony","inputs":["<target-Pods-CNLiveIntegralModule_Tests-285b96a559574e49fe0e1a40c03a5a8e0dc92816745535329b7fd5143160da4d--HeadermapTaskProducer>","<target-Pods-CNLiveIntegralModule_Tests-285b96a559574e49fe0e1a40c03a5a8e0dc92816745535329b7fd5143160da4d--begin-compiling>","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Pods_CNLiveIntegralModule_Tests.framework/Headers/Pods-CNLiveIntegralModule_Tests-umbrella.h"],"outputs":["<target-Pods-CNLiveIntegralModule_Tests-285b96a559574e49fe0e1a40c03a5a8e0dc92816745535329b7fd5143160da4d--phase0-copy-headers>"]}
"Gate target-Pods-CNLiveIntegralModule_Tests-285b96a559574e49fe0e1a40c03a5a8e0dc92816745535329b7fd5143160da4d--phase1-compile-sources": {"tool":"phony","inputs":["<target-Pods-CNLiveIntegralModule_Tests-285b96a559574e49fe0e1a40c03a5a8e0dc92816745535329b7fd5143160da4d--phase0-copy-headers>","<target-Pods-CNLiveIntegralModule_Tests-285b96a559574e49fe0e1a40c03a5a8e0dc92816745535329b7fd5143160da4d--begin-compiling>","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Tests.build/Objects-normal/arm64/Pods-CNLiveIntegralModule_Tests-dummy.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Tests.build/Objects-normal/arm64/Pods_CNLiveIntegralModule_Tests_vers.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Tests.build/Objects-normal/armv7/Pods-CNLiveIntegralModule_Tests-dummy.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Tests.build/Objects-normal/armv7/Pods_CNLiveIntegralModule_Tests_vers.o","<Linked Binary /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Pods_CNLiveIntegralModule_Tests.framework/Pods_CNLiveIntegralModule_Tests>","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Tests.build/Objects-normal/arm64/Binary/Pods_CNLiveIntegralModule_Tests","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Tests.build/Objects-normal/armv7/Binary/Pods_CNLiveIntegralModule_Tests","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Tests.build/DerivedSources/Pods_CNLiveIntegralModule_Tests_vers.c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Tests.build/Objects-normal/arm64/Pods_CNLiveIntegralModule_Tests.LinkFileList","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Tests.build/Objects-normal/armv7/Pods_CNLiveIntegralModule_Tests.LinkFileList"],"outputs":["<target-Pods-CNLiveIntegralModule_Tests-285b96a559574e49fe0e1a40c03a5a8e0dc92816745535329b7fd5143160da4d--phase1-compile-sources>"]}
"Gate target-Pods-CNLiveIntegralModule_Tests-285b96a559574e49fe0e1a40c03a5a8e0dc92816745535329b7fd5143160da4d--phase3-copy-bundle-resources": {"tool":"phony","inputs":["<target-Pods-CNLiveIntegralModule_Tests-285b96a559574e49fe0e1a40c03a5a8e0dc92816745535329b7fd5143160da4d--phase1-compile-sources>","<target-Pods-CNLiveIntegralModule_Tests-285b96a559574e49fe0e1a40c03a5a8e0dc92816745535329b7fd5143160da4d--begin-compiling>"],"outputs":["<target-Pods-CNLiveIntegralModule_Tests-285b96a559574e49fe0e1a40c03a5a8e0dc92816745535329b7fd5143160da4d--phase3-copy-bundle-resources>"]}
"Gate target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--Barrier-ChangeAlternatePermissions": {"tool":"phony","inputs":["<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--Barrier-ChangePermissions>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--Barrier-ChangeAlternatePermissions>"]}
"Gate target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--Barrier-ChangePermissions": {"tool":"phony","inputs":["<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--Barrier-StripSymbols>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--Barrier-ChangePermissions>"]}
"Gate target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--Barrier-CodeSign": {"tool":"phony","inputs":["<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--Barrier-ChangeAlternatePermissions>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--Barrier-CodeSign>"]}
"Gate target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--Barrier-CopyAside": {"tool":"phony","inputs":["<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--ProductPostprocessingTaskProducer>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--Barrier-CopyAside>"]}
"Gate target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--Barrier-RegisterExecutionPolicyException": {"tool":"phony","inputs":["<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--Barrier-CodeSign>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--Barrier-RegisterExecutionPolicyException>"]}
"Gate target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--Barrier-StripSymbols": {"tool":"phony","inputs":["<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--Barrier-CopyAside>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--Barrier-StripSymbols>"]}
"Gate target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--Barrier-Validate": {"tool":"phony","inputs":["<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--Barrier-RegisterExecutionPolicyException>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>","<Touch /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework>"],"outputs":["<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--Barrier-Validate>"]}
"Gate target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--GeneratedFilesTaskProducer": {"tool":"phony","inputs":["<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--XCFrameworkTaskProducer>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--GeneratedFilesTaskProducer>"]}
"Gate target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--HeadermapTaskProducer": {"tool":"phony","inputs":["<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--GeneratedFilesTaskProducer>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-target-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml"],"outputs":["<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--HeadermapTaskProducer>"]}
"Gate target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--InfoPlistTaskProducer": {"tool":"phony","inputs":["<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--HeadermapTaskProducer>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Info.plist"],"outputs":["<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--InfoPlistTaskProducer>"]}
"Gate target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--ModuleMapTaskProducer": {"tool":"phony","inputs":["<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--HeadermapTaskProducer>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Modules/module.modulemap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap"],"outputs":["<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--ModuleMapTaskProducer>"]}
"Gate target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--ProductPostprocessingTaskProducer": {"tool":"phony","inputs":["<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--HeadermapTaskProducer>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase3-copy-bundle-resources>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--InfoPlistTaskProducer>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--VersionPlistTaskProducer>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--SanitizerTaskProducer>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--ModuleMapTaskProducer>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--SwiftStandardLibrariesTaskProducer>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--StubBinaryTaskProducer>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--TestTargetTaskProducer>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--ProductPostprocessingTaskProducer>"]}
"Gate target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--ProductStructureTaskProducer": {"tool":"phony","inputs":["<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--start>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>","<MkDir /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework>","<MkDir /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers>"],"outputs":["<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--ProductStructureTaskProducer>"]}
"Gate target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--SanitizerTaskProducer": {"tool":"phony","inputs":["<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--HeadermapTaskProducer>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--SanitizerTaskProducer>"]}
"Gate target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--StubBinaryTaskProducer": {"tool":"phony","inputs":["<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--HeadermapTaskProducer>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--StubBinaryTaskProducer>"]}
"Gate target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--SwiftStandardLibrariesTaskProducer": {"tool":"phony","inputs":["<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--HeadermapTaskProducer>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase3-copy-bundle-resources>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--SwiftStandardLibrariesTaskProducer>"]}
"Gate target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--TestTargetPostprocessingTaskProducer": {"tool":"phony","inputs":["<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--ProductPostprocessingTaskProducer>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--TestTargetPostprocessingTaskProducer>"]}
"Gate target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--TestTargetTaskProducer": {"tool":"phony","inputs":["<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--HeadermapTaskProducer>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--TestTargetTaskProducer>"]}
"Gate target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--VersionPlistTaskProducer": {"tool":"phony","inputs":["<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--HeadermapTaskProducer>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--VersionPlistTaskProducer>"]}
"Gate target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--XCFrameworkTaskProducer": {"tool":"phony","inputs":["<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--ProductStructureTaskProducer>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--XCFrameworkTaskProducer>"]}
"Gate target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling": {"tool":"phony","inputs":["<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-Debug-iphoneos-stale-file-removal>","<CreateBuildDirectory-/tmp/Pods.dst>","<CreateBuildDirectory-/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build>","<CreateBuildDirectory-/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build>"],"outputs":["<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"]}
"Gate target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--end": {"tool":"phony","inputs":["<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--entry>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--Barrier-ChangeAlternatePermissions>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--Barrier-ChangePermissions>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--Barrier-CodeSign>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--Barrier-CopyAside>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--Barrier-RegisterExecutionPolicyException>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--Barrier-StripSymbols>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--Barrier-Validate>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--GeneratedFilesTaskProducer>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--HeadermapTaskProducer>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--InfoPlistTaskProducer>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--ModuleMapTaskProducer>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--ProductPostprocessingTaskProducer>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--ProductStructureTaskProducer>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--SanitizerTaskProducer>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--StubBinaryTaskProducer>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--SwiftStandardLibrariesTaskProducer>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--TestTargetPostprocessingTaskProducer>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--TestTargetTaskProducer>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--VersionPlistTaskProducer>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--XCFrameworkTaskProducer>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase1-compile-sources>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase3-copy-bundle-resources>","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Assets.car","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/CAAnimation+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/CALayer+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/NSArray+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/NSAttributedString+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/NSCharacterSet+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/NSMethodSignature+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/NSNumber+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/NSObject+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/NSObject+QMUIMultipleDelegates.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/NSParagraphStyle+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/NSPointerArray+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/NSString+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/NSURL+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIAlbumViewController.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIAlertController.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIAnimationHelper.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIAsset.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIAssetsGroup.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIAssetsManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIButton.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUICellHeightCache.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUICellHeightKeyCache.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUICellSizeKeyCache.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUICollectionViewPagingLayout.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUICommonTableViewController.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUICommonViewController.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIConfiguration.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIConsole.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIConsoleToolbar.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIConsoleViewController.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIDialogViewController.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIDisplayLinkAnimation.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIEmotionInputManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIEmotionView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIEmptyView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIFillButton.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIFloatLayoutView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIGhostButton.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIGridView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIHelper.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIImagePickerCollectionViewCell.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIImagePickerHelper.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIImagePickerPreviewViewController.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIImagePickerViewController.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIImagePreviewView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIImagePreviewViewController.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIImagePreviewViewTransitionAnimator.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIKeyboardManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIKit-dummy.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIKit_vers.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUILabel.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUILinkButton.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUILog+QMUIConsole.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUILogItem.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUILogManagerViewController.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUILogNameManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUILogger+QMUIConfigurationTemplate.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUILogger.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIMarqueeLabel.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIModalPresentationViewController.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIMoreOperationController.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIMultipleDelegates.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUINavigationBarScrollingAnimator.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUINavigationBarScrollingSnapAnimator.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUINavigationButton.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUINavigationController.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUINavigationTitleView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIOrderedDictionary.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIPieProgressView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIPopupContainerView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIPopupMenuBaseItem.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIPopupMenuButtonItem.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIPopupMenuView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIRuntime.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIScrollAnimator.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUISearchBar.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUISearchController.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUISegmentedControl.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUISlider.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIStaticTableViewCellData.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIStaticTableViewCellDataSource.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUITabBarViewController.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUITableView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUITableViewCell.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUITableViewHeaderFooterView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUITestView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUITextField.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUITextView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIThemeManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIThemeManagerCenter.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIThemePrivate.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUITips.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIToastAnimator.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIToastBackgroundView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIToastContentView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIToastView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIToolbarButton.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIVisualEffectView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIWeakObjectContainer.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIWindowSizeMonitor.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIZoomImageView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIActivityIndicatorView+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIBarItem+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIBarItem+QMUIBadge.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIBezierPath+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIButton+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UICollectionView+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UICollectionView+QMUICellSizeKeyCache.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIColor+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIColor+QMUITheme.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIControl+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIFont+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIGestureRecognizer+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIImage+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIImage+QMUITheme.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIImageView+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIInterface+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UILabel+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIMenuController+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UINavigationBar+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UINavigationBar+Transition.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UINavigationController+NavigationBarTransition.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UINavigationController+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIScrollView+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UISearchBar+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UISearchController+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UISwitch+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UITabBar+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UITabBarItem+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UITableView+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UITableView+QMUICellHeightKeyCache.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UITableView+QMUIStaticCell.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UITableViewCell+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UITextField+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UITextView+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UITraitCollection+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIView+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIView+QMUITheme.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIViewController+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIViewController+QMUITheme.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIVisualEffect+QMUITheme.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIWindow+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/CAAnimation+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/CALayer+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/NSArray+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/NSAttributedString+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/NSCharacterSet+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/NSMethodSignature+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/NSNumber+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/NSObject+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/NSObject+QMUIMultipleDelegates.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/NSParagraphStyle+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/NSPointerArray+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/NSString+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/NSURL+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIAlbumViewController.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIAlertController.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIAnimationHelper.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIAsset.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIAssetsGroup.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIAssetsManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIButton.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUICellHeightCache.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUICellHeightKeyCache.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUICellSizeKeyCache.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUICollectionViewPagingLayout.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUICommonTableViewController.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUICommonViewController.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIConfiguration.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIConsole.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIConsoleToolbar.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIConsoleViewController.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIDialogViewController.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIDisplayLinkAnimation.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIEmotionInputManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIEmotionView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIEmptyView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIFillButton.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIFloatLayoutView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIGhostButton.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIGridView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIHelper.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIImagePickerCollectionViewCell.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIImagePickerHelper.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIImagePickerPreviewViewController.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIImagePickerViewController.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIImagePreviewView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIImagePreviewViewController.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIImagePreviewViewTransitionAnimator.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIKeyboardManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIKit-dummy.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIKit_vers.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUILabel.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUILinkButton.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUILog+QMUIConsole.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUILogItem.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUILogManagerViewController.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUILogNameManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUILogger+QMUIConfigurationTemplate.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUILogger.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIMarqueeLabel.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIModalPresentationViewController.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIMoreOperationController.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIMultipleDelegates.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUINavigationBarScrollingAnimator.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUINavigationBarScrollingSnapAnimator.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUINavigationButton.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUINavigationController.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUINavigationTitleView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIOrderedDictionary.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIPieProgressView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIPopupContainerView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIPopupMenuBaseItem.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIPopupMenuButtonItem.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIPopupMenuView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIRuntime.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIScrollAnimator.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUISearchBar.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUISearchController.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUISegmentedControl.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUISlider.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIStaticTableViewCellData.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIStaticTableViewCellDataSource.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUITabBarViewController.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUITableView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUITableViewCell.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUITableViewHeaderFooterView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUITestView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUITextField.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUITextView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIThemeManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIThemeManagerCenter.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIThemePrivate.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUITips.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIToastAnimator.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIToastBackgroundView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIToastContentView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIToastView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIToolbarButton.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIVisualEffectView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIWeakObjectContainer.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIWindowSizeMonitor.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIZoomImageView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIActivityIndicatorView+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIBarItem+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIBarItem+QMUIBadge.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIBezierPath+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIButton+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UICollectionView+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UICollectionView+QMUICellSizeKeyCache.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIColor+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIColor+QMUITheme.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIControl+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIFont+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIGestureRecognizer+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIImage+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIImage+QMUITheme.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIImageView+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIInterface+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UILabel+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIMenuController+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UINavigationBar+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UINavigationBar+Transition.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UINavigationController+NavigationBarTransition.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UINavigationController+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIScrollView+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UISearchBar+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UISearchController+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UISwitch+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UITabBar+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UITabBarItem+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UITableView+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UITableView+QMUICellHeightKeyCache.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UITableView+QMUIStaticCell.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UITableViewCell+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UITextField+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UITextView+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UITraitCollection+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIView+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIView+QMUITheme.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIViewController+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIViewController+QMUITheme.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIVisualEffect+QMUITheme.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIWindow+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIAsset.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIAssetsGroup.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIAssetsManager.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/CAAnimation+QMUI.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIAlbumViewController.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIImagePickerCollectionViewCell.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIImagePickerHelper.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIImagePickerPreviewViewController.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIImagePickerViewController.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UINavigationBar+Transition.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UINavigationController+NavigationBarTransition.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIAlertController.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIAnimationHelper.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIDisplayLinkAnimation.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIEasings.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UIBarItem+QMUIBadge.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIButton.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIFillButton.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIGhostButton.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUILinkButton.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUINavigationButton.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIToolbarButton.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUICellHeightCache.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUICellHeightKeyCache.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UITableView+QMUICellHeightKeyCache.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUICellSizeKeyCache.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UICollectionView+QMUICellSizeKeyCache.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUICollectionViewPagingLayout.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIConsole.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIConsoleToolbar.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIConsoleViewController.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUILog+QMUIConsole.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIDialogViewController.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIEmotionInputManager.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIEmotionView.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIEmptyView.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIFloatLayoutView.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIGridView.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIImagePreviewView.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIImagePreviewViewController.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIImagePreviewViewTransitionAnimator.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIKeyboardManager.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUILabel.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUILog.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUILogItem.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUILogNameManager.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUILogger.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUILogManagerViewController.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUILogger+QMUIConfigurationTemplate.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIMarqueeLabel.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIModalPresentationViewController.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIMoreOperationController.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/NSObject+QMUIMultipleDelegates.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIMultipleDelegates.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUINavigationTitleView.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIOrderedDictionary.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIPieProgressView.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIPopupContainerView.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIPopupMenuBaseItem.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIPopupMenuButtonItem.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIPopupMenuItemProtocol.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIPopupMenuView.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUINavigationBarScrollingAnimator.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUINavigationBarScrollingSnapAnimator.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIScrollAnimator.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUISearchBar.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUISearchController.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUISegmentedControl.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUISlider.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUITableView.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUITableViewCell.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUITableViewHeaderFooterView.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUITableViewProtocols.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUITestView.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUITextField.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUITextView.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUITheme.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIThemeManager.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIThemeManagerCenter.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIThemePrivate.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UIColor+QMUITheme.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UIImage+QMUITheme.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UIView+QMUITheme.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UIViewController+QMUITheme.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UIVisualEffect+QMUITheme.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUITips.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIVisualEffectView.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIWeakObjectContainer.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIWindowSizeMonitor.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIZoomImageView.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIStaticTableViewCellData.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIStaticTableViewCellDataSource.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UITableView+QMUIStaticCell.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIToastAnimator.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIToastBackgroundView.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIToastContentView.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIToastView.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUICommonDefines.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIConfiguration.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIConfigurationMacros.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUICore.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIHelper.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUILab.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIRuntime.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIKit.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUICommonTableViewController.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUICommonViewController.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUINavigationController.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUITabBarViewController.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/CALayer+QMUI.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/NSArray+QMUI.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/NSAttributedString+QMUI.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/NSCharacterSet+QMUI.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/NSMethodSignature+QMUI.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/NSNumber+QMUI.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/NSObject+QMUI.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/NSParagraphStyle+QMUI.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/NSPointerArray+QMUI.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/NSString+QMUI.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/NSURL+QMUI.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UIActivityIndicatorView+QMUI.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UIBarItem+QMUI.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UIBezierPath+QMUI.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UIButton+QMUI.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UICollectionView+QMUI.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UIColor+QMUI.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UIControl+QMUI.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UIFont+QMUI.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UIGestureRecognizer+QMUI.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UIImage+QMUI.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UIImageView+QMUI.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UIInterface+QMUI.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UILabel+QMUI.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UIMenuController+QMUI.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UINavigationBar+QMUI.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UINavigationController+QMUI.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UIScrollView+QMUI.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UISearchBar+QMUI.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UISearchController+QMUI.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UISwitch+QMUI.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UITabBar+QMUI.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UITabBarItem+QMUI.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UITableView+QMUI.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UITableViewCell+QMUI.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UITextField+QMUI.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UITextView+QMUI.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UITraitCollection+QMUI.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UIView+QMUI.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UIViewController+QMUI.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UIWindow+QMUI.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIKit-umbrella.h","<Linked Binary /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/QMUIKit>","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Modules/module.modulemap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/Binary/QMUIKit","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/Binary/QMUIKit","<MkDir /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework>","<MkDir /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers>","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Info.plist","<Touch /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework>","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/QMUIKit_vers.c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIKit.LinkFileList","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIKit.LinkFileList","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-target-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap"],"outputs":["<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--end>"]}
"Gate target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--entry": {"tool":"phony","inputs":["<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-Debug-iphoneos-stale-file-removal>","<CreateBuildDirectory-/tmp/Pods.dst>","<CreateBuildDirectory-/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build>","<CreateBuildDirectory-/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--entry>"]}
"Gate target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers": {"tool":"phony","inputs":["<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>"]}
"Gate target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--immediate": {"tool":"phony","inputs":["<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-Debug-iphoneos-stale-file-removal>","<CreateBuildDirectory-/tmp/Pods.dst>","<CreateBuildDirectory-/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build>","<CreateBuildDirectory-/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build>"],"outputs":["<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--immediate>"]}
"Gate target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--modules-ready": {"tool":"phony","inputs":["<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/CAAnimation+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/CALayer+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/NSArray+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/NSAttributedString+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/NSCharacterSet+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/NSMethodSignature+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/NSNumber+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/NSObject+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/NSObject+QMUIMultipleDelegates.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/NSParagraphStyle+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/NSPointerArray+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/NSString+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/NSURL+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIAlbumViewController.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIAlertController.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIAnimationHelper.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIAsset.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIAssetsGroup.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIAssetsManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIButton.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUICellHeightCache.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUICellHeightKeyCache.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUICellSizeKeyCache.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUICollectionViewPagingLayout.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUICommonTableViewController.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUICommonViewController.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIConfiguration.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIConsole.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIConsoleToolbar.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIConsoleViewController.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIDialogViewController.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIDisplayLinkAnimation.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIEmotionInputManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIEmotionView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIEmptyView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIFillButton.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIFloatLayoutView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIGhostButton.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIGridView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIHelper.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIImagePickerCollectionViewCell.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIImagePickerHelper.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIImagePickerPreviewViewController.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIImagePickerViewController.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIImagePreviewView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIImagePreviewViewController.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIImagePreviewViewTransitionAnimator.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIKeyboardManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIKit-dummy.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIKit_vers.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUILabel.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUILinkButton.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUILog+QMUIConsole.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUILogItem.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUILogManagerViewController.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUILogNameManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUILogger+QMUIConfigurationTemplate.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUILogger.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIMarqueeLabel.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIModalPresentationViewController.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIMoreOperationController.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIMultipleDelegates.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUINavigationBarScrollingAnimator.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUINavigationBarScrollingSnapAnimator.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUINavigationButton.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUINavigationController.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUINavigationTitleView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIOrderedDictionary.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIPieProgressView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIPopupContainerView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIPopupMenuBaseItem.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIPopupMenuButtonItem.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIPopupMenuView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIRuntime.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIScrollAnimator.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUISearchBar.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUISearchController.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUISegmentedControl.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUISlider.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIStaticTableViewCellData.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIStaticTableViewCellDataSource.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUITabBarViewController.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUITableView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUITableViewCell.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUITableViewHeaderFooterView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUITestView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUITextField.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUITextView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIThemeManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIThemeManagerCenter.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIThemePrivate.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUITips.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIToastAnimator.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIToastBackgroundView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIToastContentView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIToastView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIToolbarButton.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIVisualEffectView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIWeakObjectContainer.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIWindowSizeMonitor.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIZoomImageView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIActivityIndicatorView+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIBarItem+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIBarItem+QMUIBadge.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIBezierPath+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIButton+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UICollectionView+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UICollectionView+QMUICellSizeKeyCache.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIColor+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIColor+QMUITheme.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIControl+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIFont+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIGestureRecognizer+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIImage+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIImage+QMUITheme.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIImageView+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIInterface+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UILabel+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIMenuController+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UINavigationBar+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UINavigationBar+Transition.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UINavigationController+NavigationBarTransition.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UINavigationController+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIScrollView+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UISearchBar+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UISearchController+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UISwitch+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UITabBar+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UITabBarItem+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UITableView+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UITableView+QMUICellHeightKeyCache.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UITableView+QMUIStaticCell.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UITableViewCell+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UITextField+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UITextView+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UITraitCollection+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIView+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIView+QMUITheme.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIViewController+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIViewController+QMUITheme.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIVisualEffect+QMUITheme.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIWindow+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/CAAnimation+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/CALayer+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/NSArray+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/NSAttributedString+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/NSCharacterSet+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/NSMethodSignature+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/NSNumber+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/NSObject+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/NSObject+QMUIMultipleDelegates.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/NSParagraphStyle+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/NSPointerArray+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/NSString+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/NSURL+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIAlbumViewController.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIAlertController.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIAnimationHelper.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIAsset.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIAssetsGroup.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIAssetsManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIButton.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUICellHeightCache.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUICellHeightKeyCache.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUICellSizeKeyCache.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUICollectionViewPagingLayout.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUICommonTableViewController.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUICommonViewController.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIConfiguration.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIConsole.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIConsoleToolbar.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIConsoleViewController.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIDialogViewController.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIDisplayLinkAnimation.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIEmotionInputManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIEmotionView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIEmptyView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIFillButton.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIFloatLayoutView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIGhostButton.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIGridView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIHelper.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIImagePickerCollectionViewCell.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIImagePickerHelper.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIImagePickerPreviewViewController.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIImagePickerViewController.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIImagePreviewView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIImagePreviewViewController.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIImagePreviewViewTransitionAnimator.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIKeyboardManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIKit-dummy.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIKit_vers.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUILabel.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUILinkButton.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUILog+QMUIConsole.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUILogItem.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUILogManagerViewController.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUILogNameManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUILogger+QMUIConfigurationTemplate.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUILogger.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIMarqueeLabel.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIModalPresentationViewController.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIMoreOperationController.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIMultipleDelegates.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUINavigationBarScrollingAnimator.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUINavigationBarScrollingSnapAnimator.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUINavigationButton.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUINavigationController.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUINavigationTitleView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIOrderedDictionary.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIPieProgressView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIPopupContainerView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIPopupMenuBaseItem.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIPopupMenuButtonItem.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIPopupMenuView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIRuntime.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIScrollAnimator.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUISearchBar.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUISearchController.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUISegmentedControl.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUISlider.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIStaticTableViewCellData.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIStaticTableViewCellDataSource.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUITabBarViewController.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUITableView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUITableViewCell.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUITableViewHeaderFooterView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUITestView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUITextField.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUITextView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIThemeManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIThemeManagerCenter.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIThemePrivate.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUITips.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIToastAnimator.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIToastBackgroundView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIToastContentView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIToastView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIToolbarButton.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIVisualEffectView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIWeakObjectContainer.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIWindowSizeMonitor.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIZoomImageView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIActivityIndicatorView+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIBarItem+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIBarItem+QMUIBadge.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIBezierPath+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIButton+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UICollectionView+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UICollectionView+QMUICellSizeKeyCache.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIColor+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIColor+QMUITheme.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIControl+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIFont+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIGestureRecognizer+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIImage+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIImage+QMUITheme.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIImageView+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIInterface+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UILabel+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIMenuController+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UINavigationBar+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UINavigationBar+Transition.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UINavigationController+NavigationBarTransition.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UINavigationController+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIScrollView+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UISearchBar+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UISearchController+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UISwitch+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UITabBar+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UITabBarItem+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UITableView+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UITableView+QMUICellHeightKeyCache.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UITableView+QMUIStaticCell.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UITableViewCell+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UITextField+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UITextView+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UITraitCollection+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIView+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIView+QMUITheme.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIViewController+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIViewController+QMUITheme.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIVisualEffect+QMUITheme.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIWindow+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIAsset.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIAssetsGroup.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIAssetsManager.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/CAAnimation+QMUI.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIAlbumViewController.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIImagePickerCollectionViewCell.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIImagePickerHelper.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIImagePickerPreviewViewController.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIImagePickerViewController.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UINavigationBar+Transition.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UINavigationController+NavigationBarTransition.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIAlertController.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIAnimationHelper.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIDisplayLinkAnimation.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIEasings.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UIBarItem+QMUIBadge.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIButton.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIFillButton.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIGhostButton.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUILinkButton.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUINavigationButton.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIToolbarButton.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUICellHeightCache.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUICellHeightKeyCache.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UITableView+QMUICellHeightKeyCache.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUICellSizeKeyCache.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UICollectionView+QMUICellSizeKeyCache.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUICollectionViewPagingLayout.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIConsole.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIConsoleToolbar.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIConsoleViewController.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUILog+QMUIConsole.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIDialogViewController.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIEmotionInputManager.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIEmotionView.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIEmptyView.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIFloatLayoutView.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIGridView.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIImagePreviewView.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIImagePreviewViewController.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIImagePreviewViewTransitionAnimator.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIKeyboardManager.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUILabel.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUILog.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUILogItem.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUILogNameManager.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUILogger.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUILogManagerViewController.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUILogger+QMUIConfigurationTemplate.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIMarqueeLabel.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIModalPresentationViewController.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIMoreOperationController.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/NSObject+QMUIMultipleDelegates.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIMultipleDelegates.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUINavigationTitleView.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIOrderedDictionary.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIPieProgressView.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIPopupContainerView.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIPopupMenuBaseItem.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIPopupMenuButtonItem.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIPopupMenuItemProtocol.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIPopupMenuView.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUINavigationBarScrollingAnimator.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUINavigationBarScrollingSnapAnimator.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIScrollAnimator.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUISearchBar.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUISearchController.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUISegmentedControl.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUISlider.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUITableView.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUITableViewCell.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUITableViewHeaderFooterView.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUITableViewProtocols.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUITestView.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUITextField.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUITextView.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUITheme.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIThemeManager.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIThemeManagerCenter.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIThemePrivate.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UIColor+QMUITheme.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UIImage+QMUITheme.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UIView+QMUITheme.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UIViewController+QMUITheme.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UIVisualEffect+QMUITheme.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUITips.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIVisualEffectView.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIWeakObjectContainer.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIWindowSizeMonitor.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIZoomImageView.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIStaticTableViewCellData.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIStaticTableViewCellDataSource.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UITableView+QMUIStaticCell.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIToastAnimator.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIToastBackgroundView.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIToastContentView.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIToastView.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUICommonDefines.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIConfiguration.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIConfigurationMacros.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUICore.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIHelper.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUILab.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIRuntime.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIKit.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUICommonTableViewController.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUICommonViewController.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUINavigationController.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUITabBarViewController.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/CALayer+QMUI.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/NSArray+QMUI.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/NSAttributedString+QMUI.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/NSCharacterSet+QMUI.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/NSMethodSignature+QMUI.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/NSNumber+QMUI.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/NSObject+QMUI.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/NSParagraphStyle+QMUI.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/NSPointerArray+QMUI.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/NSString+QMUI.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/NSURL+QMUI.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UIActivityIndicatorView+QMUI.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UIBarItem+QMUI.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UIBezierPath+QMUI.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UIButton+QMUI.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UICollectionView+QMUI.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UIColor+QMUI.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UIControl+QMUI.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UIFont+QMUI.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UIGestureRecognizer+QMUI.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UIImage+QMUI.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UIImageView+QMUI.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UIInterface+QMUI.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UILabel+QMUI.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UIMenuController+QMUI.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UINavigationBar+QMUI.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UINavigationController+QMUI.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UIScrollView+QMUI.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UISearchBar+QMUI.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UISearchController+QMUI.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UISwitch+QMUI.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UITabBar+QMUI.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UITabBarItem+QMUI.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UITableView+QMUI.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UITableViewCell+QMUI.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UITextField+QMUI.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UITextView+QMUI.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UITraitCollection+QMUI.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UIView+QMUI.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UIViewController+QMUI.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UIWindow+QMUI.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIKit-umbrella.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/QMUIKit_vers.c"],"outputs":["<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--modules-ready>"]}
"Gate target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers": {"tool":"phony","inputs":["<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--HeadermapTaskProducer>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIAsset.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIAssetsGroup.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIAssetsManager.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/CAAnimation+QMUI.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIAlbumViewController.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIImagePickerCollectionViewCell.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIImagePickerHelper.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIImagePickerPreviewViewController.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIImagePickerViewController.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UINavigationBar+Transition.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UINavigationController+NavigationBarTransition.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIAlertController.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIAnimationHelper.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIDisplayLinkAnimation.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIEasings.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UIBarItem+QMUIBadge.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIButton.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIFillButton.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIGhostButton.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUILinkButton.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUINavigationButton.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIToolbarButton.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUICellHeightCache.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUICellHeightKeyCache.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UITableView+QMUICellHeightKeyCache.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUICellSizeKeyCache.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UICollectionView+QMUICellSizeKeyCache.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUICollectionViewPagingLayout.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIConsole.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIConsoleToolbar.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIConsoleViewController.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUILog+QMUIConsole.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIDialogViewController.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIEmotionInputManager.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIEmotionView.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIEmptyView.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIFloatLayoutView.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIGridView.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIImagePreviewView.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIImagePreviewViewController.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIImagePreviewViewTransitionAnimator.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIKeyboardManager.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUILabel.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUILog.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUILogItem.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUILogNameManager.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUILogger.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUILogManagerViewController.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUILogger+QMUIConfigurationTemplate.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIMarqueeLabel.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIModalPresentationViewController.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIMoreOperationController.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/NSObject+QMUIMultipleDelegates.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIMultipleDelegates.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUINavigationTitleView.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIOrderedDictionary.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIPieProgressView.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIPopupContainerView.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIPopupMenuBaseItem.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIPopupMenuButtonItem.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIPopupMenuItemProtocol.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIPopupMenuView.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUINavigationBarScrollingAnimator.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUINavigationBarScrollingSnapAnimator.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIScrollAnimator.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUISearchBar.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUISearchController.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUISegmentedControl.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUISlider.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUITableView.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUITableViewCell.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUITableViewHeaderFooterView.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUITableViewProtocols.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUITestView.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUITextField.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUITextView.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUITheme.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIThemeManager.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIThemeManagerCenter.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIThemePrivate.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UIColor+QMUITheme.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UIImage+QMUITheme.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UIView+QMUITheme.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UIViewController+QMUITheme.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UIVisualEffect+QMUITheme.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUITips.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIVisualEffectView.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIWeakObjectContainer.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIWindowSizeMonitor.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIZoomImageView.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIStaticTableViewCellData.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIStaticTableViewCellDataSource.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UITableView+QMUIStaticCell.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIToastAnimator.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIToastBackgroundView.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIToastContentView.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIToastView.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUICommonDefines.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIConfiguration.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIConfigurationMacros.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUICore.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIHelper.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUILab.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIRuntime.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIKit.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUICommonTableViewController.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUICommonViewController.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUINavigationController.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUITabBarViewController.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/CALayer+QMUI.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/NSArray+QMUI.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/NSAttributedString+QMUI.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/NSCharacterSet+QMUI.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/NSMethodSignature+QMUI.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/NSNumber+QMUI.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/NSObject+QMUI.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/NSParagraphStyle+QMUI.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/NSPointerArray+QMUI.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/NSString+QMUI.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/NSURL+QMUI.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UIActivityIndicatorView+QMUI.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UIBarItem+QMUI.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UIBezierPath+QMUI.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UIButton+QMUI.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UICollectionView+QMUI.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UIColor+QMUI.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UIControl+QMUI.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UIFont+QMUI.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UIGestureRecognizer+QMUI.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UIImage+QMUI.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UIImageView+QMUI.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UIInterface+QMUI.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UILabel+QMUI.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UIMenuController+QMUI.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UINavigationBar+QMUI.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UINavigationController+QMUI.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UIScrollView+QMUI.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UISearchBar+QMUI.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UISearchController+QMUI.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UISwitch+QMUI.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UITabBar+QMUI.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UITabBarItem+QMUI.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UITableView+QMUI.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UITableViewCell+QMUI.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UITextField+QMUI.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UITextView+QMUI.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UITraitCollection+QMUI.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UIView+QMUI.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UIViewController+QMUI.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UIWindow+QMUI.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIKit-umbrella.h"],"outputs":["<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>"]}
"Gate target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase1-compile-sources": {"tool":"phony","inputs":["<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/CAAnimation+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/CALayer+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/NSArray+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/NSAttributedString+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/NSCharacterSet+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/NSMethodSignature+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/NSNumber+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/NSObject+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/NSObject+QMUIMultipleDelegates.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/NSParagraphStyle+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/NSPointerArray+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/NSString+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/NSURL+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIAlbumViewController.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIAlertController.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIAnimationHelper.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIAsset.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIAssetsGroup.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIAssetsManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIButton.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUICellHeightCache.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUICellHeightKeyCache.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUICellSizeKeyCache.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUICollectionViewPagingLayout.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUICommonTableViewController.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUICommonViewController.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIConfiguration.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIConsole.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIConsoleToolbar.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIConsoleViewController.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIDialogViewController.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIDisplayLinkAnimation.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIEmotionInputManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIEmotionView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIEmptyView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIFillButton.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIFloatLayoutView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIGhostButton.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIGridView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIHelper.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIImagePickerCollectionViewCell.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIImagePickerHelper.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIImagePickerPreviewViewController.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIImagePickerViewController.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIImagePreviewView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIImagePreviewViewController.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIImagePreviewViewTransitionAnimator.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIKeyboardManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIKit-dummy.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIKit_vers.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUILabel.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUILinkButton.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUILog+QMUIConsole.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUILogItem.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUILogManagerViewController.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUILogNameManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUILogger+QMUIConfigurationTemplate.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUILogger.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIMarqueeLabel.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIModalPresentationViewController.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIMoreOperationController.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIMultipleDelegates.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUINavigationBarScrollingAnimator.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUINavigationBarScrollingSnapAnimator.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUINavigationButton.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUINavigationController.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUINavigationTitleView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIOrderedDictionary.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIPieProgressView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIPopupContainerView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIPopupMenuBaseItem.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIPopupMenuButtonItem.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIPopupMenuView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIRuntime.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIScrollAnimator.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUISearchBar.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUISearchController.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUISegmentedControl.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUISlider.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIStaticTableViewCellData.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIStaticTableViewCellDataSource.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUITabBarViewController.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUITableView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUITableViewCell.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUITableViewHeaderFooterView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUITestView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUITextField.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUITextView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIThemeManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIThemeManagerCenter.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIThemePrivate.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUITips.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIToastAnimator.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIToastBackgroundView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIToastContentView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIToastView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIToolbarButton.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIVisualEffectView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIWeakObjectContainer.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIWindowSizeMonitor.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIZoomImageView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIActivityIndicatorView+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIBarItem+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIBarItem+QMUIBadge.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIBezierPath+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIButton+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UICollectionView+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UICollectionView+QMUICellSizeKeyCache.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIColor+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIColor+QMUITheme.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIControl+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIFont+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIGestureRecognizer+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIImage+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIImage+QMUITheme.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIImageView+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIInterface+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UILabel+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIMenuController+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UINavigationBar+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UINavigationBar+Transition.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UINavigationController+NavigationBarTransition.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UINavigationController+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIScrollView+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UISearchBar+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UISearchController+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UISwitch+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UITabBar+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UITabBarItem+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UITableView+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UITableView+QMUICellHeightKeyCache.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UITableView+QMUIStaticCell.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UITableViewCell+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UITextField+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UITextView+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UITraitCollection+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIView+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIView+QMUITheme.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIViewController+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIViewController+QMUITheme.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIVisualEffect+QMUITheme.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIWindow+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/CAAnimation+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/CALayer+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/NSArray+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/NSAttributedString+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/NSCharacterSet+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/NSMethodSignature+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/NSNumber+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/NSObject+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/NSObject+QMUIMultipleDelegates.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/NSParagraphStyle+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/NSPointerArray+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/NSString+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/NSURL+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIAlbumViewController.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIAlertController.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIAnimationHelper.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIAsset.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIAssetsGroup.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIAssetsManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIButton.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUICellHeightCache.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUICellHeightKeyCache.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUICellSizeKeyCache.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUICollectionViewPagingLayout.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUICommonTableViewController.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUICommonViewController.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIConfiguration.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIConsole.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIConsoleToolbar.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIConsoleViewController.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIDialogViewController.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIDisplayLinkAnimation.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIEmotionInputManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIEmotionView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIEmptyView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIFillButton.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIFloatLayoutView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIGhostButton.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIGridView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIHelper.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIImagePickerCollectionViewCell.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIImagePickerHelper.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIImagePickerPreviewViewController.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIImagePickerViewController.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIImagePreviewView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIImagePreviewViewController.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIImagePreviewViewTransitionAnimator.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIKeyboardManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIKit-dummy.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIKit_vers.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUILabel.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUILinkButton.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUILog+QMUIConsole.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUILogItem.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUILogManagerViewController.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUILogNameManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUILogger+QMUIConfigurationTemplate.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUILogger.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIMarqueeLabel.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIModalPresentationViewController.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIMoreOperationController.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIMultipleDelegates.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUINavigationBarScrollingAnimator.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUINavigationBarScrollingSnapAnimator.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUINavigationButton.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUINavigationController.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUINavigationTitleView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIOrderedDictionary.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIPieProgressView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIPopupContainerView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIPopupMenuBaseItem.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIPopupMenuButtonItem.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIPopupMenuView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIRuntime.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIScrollAnimator.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUISearchBar.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUISearchController.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUISegmentedControl.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUISlider.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIStaticTableViewCellData.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIStaticTableViewCellDataSource.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUITabBarViewController.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUITableView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUITableViewCell.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUITableViewHeaderFooterView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUITestView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUITextField.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUITextView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIThemeManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIThemeManagerCenter.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIThemePrivate.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUITips.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIToastAnimator.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIToastBackgroundView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIToastContentView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIToastView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIToolbarButton.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIVisualEffectView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIWeakObjectContainer.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIWindowSizeMonitor.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIZoomImageView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIActivityIndicatorView+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIBarItem+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIBarItem+QMUIBadge.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIBezierPath+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIButton+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UICollectionView+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UICollectionView+QMUICellSizeKeyCache.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIColor+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIColor+QMUITheme.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIControl+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIFont+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIGestureRecognizer+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIImage+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIImage+QMUITheme.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIImageView+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIInterface+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UILabel+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIMenuController+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UINavigationBar+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UINavigationBar+Transition.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UINavigationController+NavigationBarTransition.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UINavigationController+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIScrollView+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UISearchBar+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UISearchController+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UISwitch+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UITabBar+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UITabBarItem+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UITableView+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UITableView+QMUICellHeightKeyCache.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UITableView+QMUIStaticCell.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UITableViewCell+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UITextField+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UITextView+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UITraitCollection+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIView+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIView+QMUITheme.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIViewController+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIViewController+QMUITheme.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIVisualEffect+QMUITheme.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIWindow+QMUI.o","<Linked Binary /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/QMUIKit>","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/Binary/QMUIKit","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/Binary/QMUIKit","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/QMUIKit_vers.c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIKit.LinkFileList","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIKit.LinkFileList"],"outputs":["<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase1-compile-sources>"]}
"Gate target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase3-copy-bundle-resources": {"tool":"phony","inputs":["<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase1-compile-sources>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Assets.car"],"outputs":["<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase3-copy-bundle-resources>"]}
"Gate target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--Barrier-ChangeAlternatePermissions": {"tool":"phony","inputs":["<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--Barrier-ChangePermissions>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--begin-compiling>"],"outputs":["<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--Barrier-ChangeAlternatePermissions>"]}
"Gate target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--Barrier-ChangePermissions": {"tool":"phony","inputs":["<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--Barrier-StripSymbols>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--begin-compiling>"],"outputs":["<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--Barrier-ChangePermissions>"]}
"Gate target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--Barrier-CodeSign": {"tool":"phony","inputs":["<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--Barrier-ChangeAlternatePermissions>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--begin-compiling>"],"outputs":["<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--Barrier-CodeSign>"]}
"Gate target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--Barrier-CopyAside": {"tool":"phony","inputs":["<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--ProductPostprocessingTaskProducer>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--begin-compiling>"],"outputs":["<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--Barrier-CopyAside>"]}
"Gate target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--Barrier-RegisterExecutionPolicyException": {"tool":"phony","inputs":["<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--Barrier-CodeSign>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--begin-compiling>"],"outputs":["<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--Barrier-RegisterExecutionPolicyException>"]}
"Gate target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--Barrier-StripSymbols": {"tool":"phony","inputs":["<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--Barrier-CopyAside>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--begin-compiling>"],"outputs":["<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--Barrier-StripSymbols>"]}
"Gate target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--Barrier-Validate": {"tool":"phony","inputs":["<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--Barrier-RegisterExecutionPolicyException>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--begin-compiling>","<Touch /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework>"],"outputs":["<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--Barrier-Validate>"]}
"Gate target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--GeneratedFilesTaskProducer": {"tool":"phony","inputs":["<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--XCFrameworkTaskProducer>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--begin-compiling>"],"outputs":["<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--GeneratedFilesTaskProducer>"]}
"Gate target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--HeadermapTaskProducer": {"tool":"phony","inputs":["<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--GeneratedFilesTaskProducer>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--begin-compiling>","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-all-non-framework-target-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-all-target-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-generated-files.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-own-target-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-project-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/all-product-headers.yaml"],"outputs":["<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--HeadermapTaskProducer>"]}
"Gate target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--InfoPlistTaskProducer": {"tool":"phony","inputs":["<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--HeadermapTaskProducer>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--begin-compiling>","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Info.plist"],"outputs":["<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--InfoPlistTaskProducer>"]}
"Gate target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--ModuleMapTaskProducer": {"tool":"phony","inputs":["<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--HeadermapTaskProducer>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--begin-compiling>","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Modules/module.modulemap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/module.modulemap"],"outputs":["<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--ModuleMapTaskProducer>"]}
"Gate target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--ProductPostprocessingTaskProducer": {"tool":"phony","inputs":["<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--HeadermapTaskProducer>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--phase3-copy-bundle-resources>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--InfoPlistTaskProducer>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--VersionPlistTaskProducer>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--SanitizerTaskProducer>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--ModuleMapTaskProducer>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--SwiftStandardLibrariesTaskProducer>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--StubBinaryTaskProducer>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--TestTargetTaskProducer>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--begin-compiling>"],"outputs":["<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--ProductPostprocessingTaskProducer>"]}
"Gate target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--ProductStructureTaskProducer": {"tool":"phony","inputs":["<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--start>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--begin-compiling>","<MkDir /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework>","<MkDir /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers>","<MkDir /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/PrivateHeaders>"],"outputs":["<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--ProductStructureTaskProducer>"]}
"Gate target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--SanitizerTaskProducer": {"tool":"phony","inputs":["<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--HeadermapTaskProducer>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--begin-compiling>"],"outputs":["<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--SanitizerTaskProducer>"]}
"Gate target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--StubBinaryTaskProducer": {"tool":"phony","inputs":["<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--HeadermapTaskProducer>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--begin-compiling>"],"outputs":["<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--StubBinaryTaskProducer>"]}
"Gate target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--SwiftStandardLibrariesTaskProducer": {"tool":"phony","inputs":["<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--HeadermapTaskProducer>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--phase3-copy-bundle-resources>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--begin-compiling>"],"outputs":["<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--SwiftStandardLibrariesTaskProducer>"]}
"Gate target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--TestTargetPostprocessingTaskProducer": {"tool":"phony","inputs":["<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--ProductPostprocessingTaskProducer>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--begin-compiling>"],"outputs":["<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--TestTargetPostprocessingTaskProducer>"]}
"Gate target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--TestTargetTaskProducer": {"tool":"phony","inputs":["<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--HeadermapTaskProducer>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--begin-compiling>"],"outputs":["<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--TestTargetTaskProducer>"]}
"Gate target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--VersionPlistTaskProducer": {"tool":"phony","inputs":["<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--HeadermapTaskProducer>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--begin-compiling>"],"outputs":["<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--VersionPlistTaskProducer>"]}
"Gate target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--XCFrameworkTaskProducer": {"tool":"phony","inputs":["<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--ProductStructureTaskProducer>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--begin-compiling>"],"outputs":["<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--XCFrameworkTaskProducer>"]}
"Gate target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--begin-compiling": {"tool":"phony","inputs":["<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d-Debug-iphoneos-stale-file-removal>","<CreateBuildDirectory-/tmp/Pods.dst>","<CreateBuildDirectory-/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build>","<CreateBuildDirectory-/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build>"],"outputs":["<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--begin-compiling>"]}
"Gate target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--end": {"tool":"phony","inputs":["<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--entry>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--Barrier-ChangeAlternatePermissions>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--Barrier-ChangePermissions>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--Barrier-CodeSign>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--Barrier-CopyAside>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--Barrier-RegisterExecutionPolicyException>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--Barrier-StripSymbols>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--Barrier-Validate>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--GeneratedFilesTaskProducer>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--HeadermapTaskProducer>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--InfoPlistTaskProducer>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--ModuleMapTaskProducer>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--ProductPostprocessingTaskProducer>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--ProductStructureTaskProducer>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--SanitizerTaskProducer>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--StubBinaryTaskProducer>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--SwiftStandardLibrariesTaskProducer>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--TestTargetPostprocessingTaskProducer>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--TestTargetTaskProducer>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--VersionPlistTaskProducer>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--XCFrameworkTaskProducer>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--generated-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--phase0-copy-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--phase1-compile-sources>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--phase3-copy-bundle-resources>","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/NSBezierPath+RoundedCorners.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/NSButton+WebCache.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/NSData+ImageContentType.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/NSImage+Compatibility.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDAnimatedImage.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDAnimatedImageRep.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDAnimatedImageView+WebCache.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDAnimatedImageView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDAsyncBlockOperation.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDDiskCache.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDImageAPNGCoder.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDImageAssetManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDImageCache.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDImageCacheConfig.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDImageCacheDefine.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDImageCachesManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDImageCachesManagerOperation.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDImageCoder.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDImageCoderHelper.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDImageCodersManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDImageFrame.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDImageGIFCoder.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDImageGraphics.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDImageHEICCoder.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDImageIOAnimatedCoder.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDImageIOCoder.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDImageLoader.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDImageLoadersManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDImageTransformer.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDInternalMacros.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDMemoryCache.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDWeakProxy.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDWebImage-dummy.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDWebImageCacheKeyFilter.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDWebImageCacheSerializer.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDWebImageCompat.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDWebImageDefine.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDWebImageDownloader.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDWebImageDownloaderConfig.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDWebImageDownloaderOperation.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDWebImageDownloaderRequestModifier.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDWebImageError.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDWebImageIndicator.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDWebImageManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDWebImageOptionsProcessor.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDWebImagePrefetcher.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDWebImageTransition.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDWebImage_vers.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/UIButton+WebCache.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/UIColor+HexString.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/UIImage+ForceDecode.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/UIImage+GIF.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/UIImage+MemoryCacheCost.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/UIImage+Metadata.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/UIImage+MultiFormat.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/UIImage+Transform.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/UIImageView+HighlightedWebCache.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/UIImageView+WebCache.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/UIView+WebCache.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/UIView+WebCacheOperation.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/NSBezierPath+RoundedCorners.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/NSButton+WebCache.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/NSData+ImageContentType.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/NSImage+Compatibility.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDAnimatedImage.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDAnimatedImageRep.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDAnimatedImageView+WebCache.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDAnimatedImageView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDAsyncBlockOperation.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDDiskCache.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDImageAPNGCoder.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDImageAssetManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDImageCache.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDImageCacheConfig.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDImageCacheDefine.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDImageCachesManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDImageCachesManagerOperation.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDImageCoder.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDImageCoderHelper.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDImageCodersManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDImageFrame.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDImageGIFCoder.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDImageGraphics.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDImageHEICCoder.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDImageIOAnimatedCoder.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDImageIOCoder.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDImageLoader.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDImageLoadersManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDImageTransformer.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDInternalMacros.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDMemoryCache.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDWeakProxy.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDWebImage-dummy.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDWebImageCacheKeyFilter.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDWebImageCacheSerializer.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDWebImageCompat.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDWebImageDefine.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDWebImageDownloader.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDWebImageDownloaderConfig.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDWebImageDownloaderOperation.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDWebImageDownloaderRequestModifier.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDWebImageError.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDWebImageIndicator.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDWebImageManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDWebImageOptionsProcessor.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDWebImagePrefetcher.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDWebImageTransition.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDWebImage_vers.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/UIButton+WebCache.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/UIColor+HexString.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/UIImage+ForceDecode.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/UIImage+GIF.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/UIImage+MemoryCacheCost.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/UIImage+Metadata.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/UIImage+MultiFormat.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/UIImage+Transform.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/UIImageView+HighlightedWebCache.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/UIImageView+WebCache.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/UIView+WebCache.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/UIView+WebCacheOperation.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/NSButton+WebCache.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/NSData+ImageContentType.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/NSImage+Compatibility.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDAnimatedImage.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDAnimatedImageRep.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDAnimatedImageView+WebCache.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDAnimatedImageView.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDDiskCache.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDImageAPNGCoder.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDImageCache.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDImageCacheConfig.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDImageCacheDefine.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDImageCachesManager.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDImageCoder.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDImageCoderHelper.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDImageCodersManager.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDImageFrame.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDImageGIFCoder.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDImageGraphics.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDImageHEICCoder.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDImageIOAnimatedCoder.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDImageIOCoder.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDImageLoader.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDImageLoadersManager.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDImageTransformer.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDMemoryCache.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDWebImageCacheKeyFilter.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDWebImageCacheSerializer.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDWebImageCompat.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDWebImageDefine.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDWebImageDownloader.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDWebImageDownloaderConfig.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDWebImageDownloaderOperation.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDWebImageDownloaderRequestModifier.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDWebImageError.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDWebImageIndicator.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDWebImageManager.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDWebImageOperation.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDWebImageOptionsProcessor.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDWebImagePrefetcher.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDWebImageTransition.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/UIButton+WebCache.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/UIImage+ForceDecode.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/UIImage+GIF.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/UIImage+MemoryCacheCost.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/UIImage+Metadata.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/UIImage+MultiFormat.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/UIImage+Transform.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/UIImageView+HighlightedWebCache.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/UIImageView+WebCache.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/UIView+WebCache.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/UIView+WebCacheOperation.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/PrivateHeaders/NSBezierPath+RoundedCorners.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/PrivateHeaders/SDAsyncBlockOperation.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/PrivateHeaders/SDImageAssetManager.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/PrivateHeaders/SDImageCachesManagerOperation.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/PrivateHeaders/SDImageHEICCoderInternal.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/PrivateHeaders/SDImageIOAnimatedCoderInternal.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/PrivateHeaders/SDInternalMacros.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/PrivateHeaders/SDWeakProxy.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/PrivateHeaders/SDmetamacros.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/PrivateHeaders/UIColor+HexString.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDWebImage.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDWebImage-umbrella.h","<Linked Binary /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/SDWebImage>","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Modules/module.modulemap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/Binary/SDWebImage","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/Binary/SDWebImage","<MkDir /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework>","<MkDir /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers>","<MkDir /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/PrivateHeaders>","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Info.plist","<Touch /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework>","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources/SDWebImage_vers.c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDWebImage.LinkFileList","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDWebImage.LinkFileList","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-all-non-framework-target-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-all-target-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-generated-files.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-own-target-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-project-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/all-product-headers.yaml","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/module.modulemap"],"outputs":["<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--end>"]}
"Gate target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--entry": {"tool":"phony","inputs":["<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d-Debug-iphoneos-stale-file-removal>","<CreateBuildDirectory-/tmp/Pods.dst>","<CreateBuildDirectory-/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build>","<CreateBuildDirectory-/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--begin-compiling>"],"outputs":["<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--entry>"]}
"Gate target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--generated-headers": {"tool":"phony","inputs":["<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--begin-compiling>"],"outputs":["<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--generated-headers>"]}
"Gate target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--immediate": {"tool":"phony","inputs":["<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d-Debug-iphoneos-stale-file-removal>","<CreateBuildDirectory-/tmp/Pods.dst>","<CreateBuildDirectory-/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build>","<CreateBuildDirectory-/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build>"],"outputs":["<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--immediate>"]}
"Gate target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--modules-ready": {"tool":"phony","inputs":["<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--begin-compiling>","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/NSBezierPath+RoundedCorners.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/NSButton+WebCache.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/NSData+ImageContentType.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/NSImage+Compatibility.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDAnimatedImage.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDAnimatedImageRep.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDAnimatedImageView+WebCache.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDAnimatedImageView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDAsyncBlockOperation.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDDiskCache.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDImageAPNGCoder.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDImageAssetManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDImageCache.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDImageCacheConfig.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDImageCacheDefine.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDImageCachesManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDImageCachesManagerOperation.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDImageCoder.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDImageCoderHelper.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDImageCodersManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDImageFrame.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDImageGIFCoder.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDImageGraphics.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDImageHEICCoder.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDImageIOAnimatedCoder.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDImageIOCoder.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDImageLoader.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDImageLoadersManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDImageTransformer.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDInternalMacros.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDMemoryCache.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDWeakProxy.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDWebImage-dummy.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDWebImageCacheKeyFilter.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDWebImageCacheSerializer.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDWebImageCompat.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDWebImageDefine.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDWebImageDownloader.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDWebImageDownloaderConfig.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDWebImageDownloaderOperation.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDWebImageDownloaderRequestModifier.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDWebImageError.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDWebImageIndicator.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDWebImageManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDWebImageOptionsProcessor.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDWebImagePrefetcher.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDWebImageTransition.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDWebImage_vers.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/UIButton+WebCache.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/UIColor+HexString.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/UIImage+ForceDecode.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/UIImage+GIF.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/UIImage+MemoryCacheCost.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/UIImage+Metadata.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/UIImage+MultiFormat.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/UIImage+Transform.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/UIImageView+HighlightedWebCache.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/UIImageView+WebCache.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/UIView+WebCache.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/UIView+WebCacheOperation.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/NSBezierPath+RoundedCorners.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/NSButton+WebCache.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/NSData+ImageContentType.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/NSImage+Compatibility.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDAnimatedImage.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDAnimatedImageRep.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDAnimatedImageView+WebCache.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDAnimatedImageView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDAsyncBlockOperation.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDDiskCache.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDImageAPNGCoder.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDImageAssetManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDImageCache.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDImageCacheConfig.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDImageCacheDefine.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDImageCachesManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDImageCachesManagerOperation.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDImageCoder.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDImageCoderHelper.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDImageCodersManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDImageFrame.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDImageGIFCoder.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDImageGraphics.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDImageHEICCoder.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDImageIOAnimatedCoder.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDImageIOCoder.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDImageLoader.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDImageLoadersManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDImageTransformer.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDInternalMacros.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDMemoryCache.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDWeakProxy.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDWebImage-dummy.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDWebImageCacheKeyFilter.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDWebImageCacheSerializer.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDWebImageCompat.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDWebImageDefine.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDWebImageDownloader.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDWebImageDownloaderConfig.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDWebImageDownloaderOperation.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDWebImageDownloaderRequestModifier.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDWebImageError.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDWebImageIndicator.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDWebImageManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDWebImageOptionsProcessor.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDWebImagePrefetcher.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDWebImageTransition.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDWebImage_vers.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/UIButton+WebCache.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/UIColor+HexString.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/UIImage+ForceDecode.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/UIImage+GIF.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/UIImage+MemoryCacheCost.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/UIImage+Metadata.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/UIImage+MultiFormat.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/UIImage+Transform.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/UIImageView+HighlightedWebCache.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/UIImageView+WebCache.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/UIView+WebCache.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/UIView+WebCacheOperation.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/NSButton+WebCache.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/NSData+ImageContentType.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/NSImage+Compatibility.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDAnimatedImage.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDAnimatedImageRep.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDAnimatedImageView+WebCache.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDAnimatedImageView.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDDiskCache.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDImageAPNGCoder.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDImageCache.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDImageCacheConfig.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDImageCacheDefine.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDImageCachesManager.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDImageCoder.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDImageCoderHelper.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDImageCodersManager.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDImageFrame.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDImageGIFCoder.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDImageGraphics.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDImageHEICCoder.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDImageIOAnimatedCoder.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDImageIOCoder.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDImageLoader.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDImageLoadersManager.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDImageTransformer.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDMemoryCache.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDWebImageCacheKeyFilter.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDWebImageCacheSerializer.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDWebImageCompat.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDWebImageDefine.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDWebImageDownloader.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDWebImageDownloaderConfig.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDWebImageDownloaderOperation.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDWebImageDownloaderRequestModifier.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDWebImageError.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDWebImageIndicator.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDWebImageManager.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDWebImageOperation.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDWebImageOptionsProcessor.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDWebImagePrefetcher.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDWebImageTransition.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/UIButton+WebCache.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/UIImage+ForceDecode.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/UIImage+GIF.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/UIImage+MemoryCacheCost.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/UIImage+Metadata.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/UIImage+MultiFormat.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/UIImage+Transform.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/UIImageView+HighlightedWebCache.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/UIImageView+WebCache.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/UIView+WebCache.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/UIView+WebCacheOperation.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/PrivateHeaders/NSBezierPath+RoundedCorners.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/PrivateHeaders/SDAsyncBlockOperation.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/PrivateHeaders/SDImageAssetManager.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/PrivateHeaders/SDImageCachesManagerOperation.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/PrivateHeaders/SDImageHEICCoderInternal.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/PrivateHeaders/SDImageIOAnimatedCoderInternal.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/PrivateHeaders/SDInternalMacros.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/PrivateHeaders/SDWeakProxy.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/PrivateHeaders/SDmetamacros.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/PrivateHeaders/UIColor+HexString.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDWebImage.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDWebImage-umbrella.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources/SDWebImage_vers.c"],"outputs":["<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--modules-ready>"]}
"Gate target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--phase0-copy-headers": {"tool":"phony","inputs":["<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--HeadermapTaskProducer>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--begin-compiling>","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/NSButton+WebCache.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/NSData+ImageContentType.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/NSImage+Compatibility.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDAnimatedImage.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDAnimatedImageRep.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDAnimatedImageView+WebCache.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDAnimatedImageView.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDDiskCache.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDImageAPNGCoder.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDImageCache.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDImageCacheConfig.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDImageCacheDefine.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDImageCachesManager.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDImageCoder.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDImageCoderHelper.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDImageCodersManager.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDImageFrame.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDImageGIFCoder.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDImageGraphics.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDImageHEICCoder.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDImageIOAnimatedCoder.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDImageIOCoder.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDImageLoader.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDImageLoadersManager.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDImageTransformer.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDMemoryCache.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDWebImageCacheKeyFilter.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDWebImageCacheSerializer.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDWebImageCompat.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDWebImageDefine.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDWebImageDownloader.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDWebImageDownloaderConfig.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDWebImageDownloaderOperation.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDWebImageDownloaderRequestModifier.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDWebImageError.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDWebImageIndicator.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDWebImageManager.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDWebImageOperation.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDWebImageOptionsProcessor.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDWebImagePrefetcher.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDWebImageTransition.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/UIButton+WebCache.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/UIImage+ForceDecode.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/UIImage+GIF.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/UIImage+MemoryCacheCost.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/UIImage+Metadata.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/UIImage+MultiFormat.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/UIImage+Transform.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/UIImageView+HighlightedWebCache.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/UIImageView+WebCache.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/UIView+WebCache.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/UIView+WebCacheOperation.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/PrivateHeaders/NSBezierPath+RoundedCorners.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/PrivateHeaders/SDAsyncBlockOperation.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/PrivateHeaders/SDImageAssetManager.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/PrivateHeaders/SDImageCachesManagerOperation.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/PrivateHeaders/SDImageHEICCoderInternal.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/PrivateHeaders/SDImageIOAnimatedCoderInternal.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/PrivateHeaders/SDInternalMacros.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/PrivateHeaders/SDWeakProxy.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/PrivateHeaders/SDmetamacros.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/PrivateHeaders/UIColor+HexString.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDWebImage.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDWebImage-umbrella.h"],"outputs":["<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--phase0-copy-headers>"]}
"Gate target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--phase1-compile-sources": {"tool":"phony","inputs":["<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--phase0-copy-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--begin-compiling>","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/NSBezierPath+RoundedCorners.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/NSButton+WebCache.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/NSData+ImageContentType.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/NSImage+Compatibility.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDAnimatedImage.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDAnimatedImageRep.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDAnimatedImageView+WebCache.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDAnimatedImageView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDAsyncBlockOperation.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDDiskCache.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDImageAPNGCoder.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDImageAssetManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDImageCache.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDImageCacheConfig.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDImageCacheDefine.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDImageCachesManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDImageCachesManagerOperation.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDImageCoder.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDImageCoderHelper.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDImageCodersManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDImageFrame.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDImageGIFCoder.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDImageGraphics.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDImageHEICCoder.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDImageIOAnimatedCoder.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDImageIOCoder.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDImageLoader.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDImageLoadersManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDImageTransformer.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDInternalMacros.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDMemoryCache.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDWeakProxy.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDWebImage-dummy.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDWebImageCacheKeyFilter.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDWebImageCacheSerializer.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDWebImageCompat.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDWebImageDefine.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDWebImageDownloader.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDWebImageDownloaderConfig.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDWebImageDownloaderOperation.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDWebImageDownloaderRequestModifier.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDWebImageError.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDWebImageIndicator.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDWebImageManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDWebImageOptionsProcessor.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDWebImagePrefetcher.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDWebImageTransition.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDWebImage_vers.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/UIButton+WebCache.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/UIColor+HexString.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/UIImage+ForceDecode.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/UIImage+GIF.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/UIImage+MemoryCacheCost.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/UIImage+Metadata.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/UIImage+MultiFormat.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/UIImage+Transform.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/UIImageView+HighlightedWebCache.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/UIImageView+WebCache.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/UIView+WebCache.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/UIView+WebCacheOperation.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/NSBezierPath+RoundedCorners.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/NSButton+WebCache.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/NSData+ImageContentType.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/NSImage+Compatibility.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDAnimatedImage.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDAnimatedImageRep.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDAnimatedImageView+WebCache.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDAnimatedImageView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDAsyncBlockOperation.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDDiskCache.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDImageAPNGCoder.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDImageAssetManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDImageCache.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDImageCacheConfig.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDImageCacheDefine.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDImageCachesManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDImageCachesManagerOperation.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDImageCoder.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDImageCoderHelper.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDImageCodersManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDImageFrame.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDImageGIFCoder.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDImageGraphics.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDImageHEICCoder.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDImageIOAnimatedCoder.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDImageIOCoder.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDImageLoader.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDImageLoadersManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDImageTransformer.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDInternalMacros.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDMemoryCache.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDWeakProxy.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDWebImage-dummy.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDWebImageCacheKeyFilter.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDWebImageCacheSerializer.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDWebImageCompat.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDWebImageDefine.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDWebImageDownloader.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDWebImageDownloaderConfig.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDWebImageDownloaderOperation.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDWebImageDownloaderRequestModifier.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDWebImageError.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDWebImageIndicator.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDWebImageManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDWebImageOptionsProcessor.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDWebImagePrefetcher.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDWebImageTransition.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDWebImage_vers.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/UIButton+WebCache.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/UIColor+HexString.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/UIImage+ForceDecode.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/UIImage+GIF.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/UIImage+MemoryCacheCost.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/UIImage+Metadata.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/UIImage+MultiFormat.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/UIImage+Transform.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/UIImageView+HighlightedWebCache.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/UIImageView+WebCache.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/UIView+WebCache.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/UIView+WebCacheOperation.o","<Linked Binary /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/SDWebImage>","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/Binary/SDWebImage","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/Binary/SDWebImage","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources/SDWebImage_vers.c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDWebImage.LinkFileList","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDWebImage.LinkFileList"],"outputs":["<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--phase1-compile-sources>"]}
"Gate target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--phase3-copy-bundle-resources": {"tool":"phony","inputs":["<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--phase1-compile-sources>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--begin-compiling>"],"outputs":["<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--phase3-copy-bundle-resources>"]}
"Gate target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--Barrier-ChangeAlternatePermissions": {"tool":"phony","inputs":["<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--Barrier-ChangePermissions>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--begin-compiling>"],"outputs":["<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--Barrier-ChangeAlternatePermissions>"]}
"Gate target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--Barrier-ChangePermissions": {"tool":"phony","inputs":["<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--Barrier-StripSymbols>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--begin-compiling>"],"outputs":["<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--Barrier-ChangePermissions>"]}
"Gate target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--Barrier-CodeSign": {"tool":"phony","inputs":["<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--Barrier-ChangeAlternatePermissions>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--begin-compiling>"],"outputs":["<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--Barrier-CodeSign>"]}
"Gate target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--Barrier-CopyAside": {"tool":"phony","inputs":["<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--ProductPostprocessingTaskProducer>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--begin-compiling>"],"outputs":["<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--Barrier-CopyAside>"]}
"Gate target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--Barrier-RegisterExecutionPolicyException": {"tool":"phony","inputs":["<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--Barrier-CodeSign>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--begin-compiling>"],"outputs":["<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--Barrier-RegisterExecutionPolicyException>"]}
"Gate target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--Barrier-StripSymbols": {"tool":"phony","inputs":["<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--Barrier-CopyAside>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--begin-compiling>"],"outputs":["<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--Barrier-StripSymbols>"]}
"Gate target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--Barrier-Validate": {"tool":"phony","inputs":["<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--Barrier-RegisterExecutionPolicyException>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--begin-compiling>","<Touch /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework>"],"outputs":["<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--Barrier-Validate>"]}
"Gate target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--GeneratedFilesTaskProducer": {"tool":"phony","inputs":["<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--XCFrameworkTaskProducer>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--begin-compiling>"],"outputs":["<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--GeneratedFilesTaskProducer>"]}
"Gate target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--HeadermapTaskProducer": {"tool":"phony","inputs":["<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--GeneratedFilesTaskProducer>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--begin-compiling>","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-all-non-framework-target-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-all-target-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-generated-files.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-own-target-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-project-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/all-product-headers.yaml"],"outputs":["<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--HeadermapTaskProducer>"]}
"Gate target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--InfoPlistTaskProducer": {"tool":"phony","inputs":["<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--HeadermapTaskProducer>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--begin-compiling>","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Info.plist"],"outputs":["<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--InfoPlistTaskProducer>"]}
"Gate target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--ModuleMapTaskProducer": {"tool":"phony","inputs":["<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--HeadermapTaskProducer>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--begin-compiling>","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Modules/module.modulemap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/module.modulemap"],"outputs":["<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--ModuleMapTaskProducer>"]}
"Gate target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--ProductPostprocessingTaskProducer": {"tool":"phony","inputs":["<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--HeadermapTaskProducer>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--phase3-copy-bundle-resources>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--InfoPlistTaskProducer>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--VersionPlistTaskProducer>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--SanitizerTaskProducer>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--ModuleMapTaskProducer>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--SwiftStandardLibrariesTaskProducer>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--StubBinaryTaskProducer>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--TestTargetTaskProducer>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--begin-compiling>"],"outputs":["<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--ProductPostprocessingTaskProducer>"]}
"Gate target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--ProductStructureTaskProducer": {"tool":"phony","inputs":["<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--start>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--begin-compiling>","<MkDir /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework>","<MkDir /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers>"],"outputs":["<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--ProductStructureTaskProducer>"]}
"Gate target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--SanitizerTaskProducer": {"tool":"phony","inputs":["<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--HeadermapTaskProducer>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--begin-compiling>"],"outputs":["<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--SanitizerTaskProducer>"]}
"Gate target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--StubBinaryTaskProducer": {"tool":"phony","inputs":["<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--HeadermapTaskProducer>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--begin-compiling>"],"outputs":["<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--StubBinaryTaskProducer>"]}
"Gate target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--SwiftStandardLibrariesTaskProducer": {"tool":"phony","inputs":["<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--HeadermapTaskProducer>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--phase3-copy-bundle-resources>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--begin-compiling>"],"outputs":["<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--SwiftStandardLibrariesTaskProducer>"]}
"Gate target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--TestTargetPostprocessingTaskProducer": {"tool":"phony","inputs":["<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--ProductPostprocessingTaskProducer>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--begin-compiling>"],"outputs":["<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--TestTargetPostprocessingTaskProducer>"]}
"Gate target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--TestTargetTaskProducer": {"tool":"phony","inputs":["<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--HeadermapTaskProducer>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--begin-compiling>"],"outputs":["<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--TestTargetTaskProducer>"]}
"Gate target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--VersionPlistTaskProducer": {"tool":"phony","inputs":["<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--HeadermapTaskProducer>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--begin-compiling>"],"outputs":["<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--VersionPlistTaskProducer>"]}
"Gate target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--XCFrameworkTaskProducer": {"tool":"phony","inputs":["<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--ProductStructureTaskProducer>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--begin-compiling>"],"outputs":["<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--XCFrameworkTaskProducer>"]}
"Gate target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--begin-compiling": {"tool":"phony","inputs":["<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-Debug-iphoneos-stale-file-removal>","<CreateBuildDirectory-/tmp/Pods.dst>","<CreateBuildDirectory-/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build>","<CreateBuildDirectory-/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build>"],"outputs":["<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--begin-compiling>"]}
"Gate target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--end": {"tool":"phony","inputs":["<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--entry>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--Barrier-ChangeAlternatePermissions>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--Barrier-ChangePermissions>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--Barrier-CodeSign>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--Barrier-CopyAside>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--Barrier-RegisterExecutionPolicyException>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--Barrier-StripSymbols>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--Barrier-Validate>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--GeneratedFilesTaskProducer>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--HeadermapTaskProducer>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--InfoPlistTaskProducer>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--ModuleMapTaskProducer>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--ProductPostprocessingTaskProducer>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--ProductStructureTaskProducer>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--SanitizerTaskProducer>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--StubBinaryTaskProducer>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--SwiftStandardLibrariesTaskProducer>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--TestTargetPostprocessingTaskProducer>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--TestTargetTaskProducer>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--VersionPlistTaskProducer>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--XCFrameworkTaskProducer>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--generated-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--phase0-copy-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--phase1-compile-sources>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--phase3-copy-bundle-resources>","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/CALayer+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/CALayer+YYWebImage.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/MKAnnotationView+YYWebImage.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/NSArray+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/NSAttributedString+YYText.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/NSBundle+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/NSData+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/NSDate+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/NSDictionary+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/NSKeyedUnarchiver+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/NSNotificationCenter+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/NSNumber+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/NSObject+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/NSObject+YYAddForARC.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/NSObject+YYAddForKVO.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/NSObject+YYModel.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/NSParagraphStyle+YYText.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/NSString+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/NSThread+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/NSTimer+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/UIApplication+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/UIBarButtonItem+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/UIBezierPath+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/UIButton+YYWebImage.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/UIColor+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/UIControl+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/UIDevice+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/UIFont+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/UIGestureRecognizer+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/UIImage+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/UIImageView+YYWebImage.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/UIPasteboard+YYText.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/UIScreen+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/UIScrollView+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/UITableView+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/UITextField+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/UIView+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYAnimatedImageView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYAsyncLayer.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYCGUtilities.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYCache.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYClassInfo.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYDiskCache.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYDispatchQueuePool.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYFileHash.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYFrameImage.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYGestureRecognizer.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYImage.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYImageCache.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYImageCoder.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYKVStorage.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYKeychain.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYKit-dummy.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYKit_vers.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYLabel.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYMemoryCache.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYReachability.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYSentinel.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYSpriteSheetImage.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYTextArchiver.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYTextAttribute.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYTextContainerView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYTextDebugOption.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYTextEffectWindow.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYTextInput.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYTextKeyboardManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYTextLayout.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYTextLine.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYTextMagnifier.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYTextParser.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYTextRubyAnnotation.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYTextRunDelegate.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYTextSelectionView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYTextUtilities.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYTextView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYThreadSafeArray.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYThreadSafeDictionary.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYTimer.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYTransaction.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYWeakProxy.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYWebImageManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYWebImageOperation.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/_YYWebImageSetter.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/CALayer+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/CALayer+YYWebImage.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/MKAnnotationView+YYWebImage.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/NSArray+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/NSAttributedString+YYText.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/NSBundle+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/NSData+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/NSDate+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/NSDictionary+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/NSKeyedUnarchiver+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/NSNotificationCenter+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/NSNumber+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/NSObject+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/NSObject+YYAddForARC.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/NSObject+YYAddForKVO.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/NSObject+YYModel.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/NSParagraphStyle+YYText.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/NSString+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/NSThread+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/NSTimer+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/UIApplication+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/UIBarButtonItem+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/UIBezierPath+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/UIButton+YYWebImage.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/UIColor+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/UIControl+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/UIDevice+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/UIFont+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/UIGestureRecognizer+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/UIImage+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/UIImageView+YYWebImage.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/UIPasteboard+YYText.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/UIScreen+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/UIScrollView+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/UITableView+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/UITextField+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/UIView+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYAnimatedImageView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYAsyncLayer.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYCGUtilities.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYCache.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYClassInfo.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYDiskCache.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYDispatchQueuePool.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYFileHash.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYFrameImage.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYGestureRecognizer.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYImage.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYImageCache.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYImageCoder.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYKVStorage.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYKeychain.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYKit-dummy.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYKit_vers.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYLabel.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYMemoryCache.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYReachability.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYSentinel.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYSpriteSheetImage.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYTextArchiver.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYTextAttribute.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYTextContainerView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYTextDebugOption.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYTextEffectWindow.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYTextInput.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYTextKeyboardManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYTextLayout.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYTextLine.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYTextMagnifier.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYTextParser.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYTextRubyAnnotation.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYTextRunDelegate.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYTextSelectionView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYTextUtilities.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYTextView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYThreadSafeArray.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYThreadSafeDictionary.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYTimer.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYTransaction.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYWeakProxy.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYWebImageManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYWebImageOperation.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/_YYWebImageSetter.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYKit-umbrella.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/NSArray+YYAdd.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/NSBundle+YYAdd.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/NSData+YYAdd.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/NSDate+YYAdd.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/NSDictionary+YYAdd.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/NSKeyedUnarchiver+YYAdd.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/NSNotificationCenter+YYAdd.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/NSNumber+YYAdd.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/NSObject+YYAdd.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/NSObject+YYAddForARC.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/NSObject+YYAddForKVO.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/NSString+YYAdd.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/NSThread+YYAdd.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/NSTimer+YYAdd.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/CALayer+YYAdd.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYCGUtilities.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/UIApplication+YYAdd.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/UIBarButtonItem+YYAdd.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/UIBezierPath+YYAdd.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/UIColor+YYAdd.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/UIControl+YYAdd.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/UIDevice+YYAdd.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/UIFont+YYAdd.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/UIGestureRecognizer+YYAdd.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/UIImage+YYAdd.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/UIScreen+YYAdd.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/UIScrollView+YYAdd.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/UITableView+YYAdd.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/UITextField+YYAdd.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/UIView+YYAdd.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYKitMacro.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYCache.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYDiskCache.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYKVStorage.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYMemoryCache.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/CALayer+YYWebImage.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/MKAnnotationView+YYWebImage.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/UIButton+YYWebImage.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/UIImageView+YYWebImage.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/_YYWebImageSetter.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYAnimatedImageView.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYFrameImage.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYImage.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYImageCache.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYImageCoder.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYSpriteSheetImage.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYWebImageManager.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYWebImageOperation.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/NSObject+YYModel.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYClassInfo.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYTextContainerView.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYTextDebugOption.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYTextEffectWindow.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYTextInput.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYTextKeyboardManager.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYTextLayout.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYTextLine.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYTextMagnifier.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYTextSelectionView.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/NSAttributedString+YYText.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/NSParagraphStyle+YYText.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/UIPasteboard+YYText.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYTextArchiver.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYTextAttribute.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYTextParser.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYTextRubyAnnotation.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYTextRunDelegate.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYTextUtilities.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYLabel.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYTextView.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYAsyncLayer.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYDispatchQueuePool.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYFileHash.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYGestureRecognizer.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYKeychain.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYReachability.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYSentinel.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYThreadSafeArray.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYThreadSafeDictionary.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYTimer.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYTransaction.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYWeakProxy.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYKit.h","<Linked Binary /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/YYKit>","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Modules/module.modulemap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/Binary/YYKit","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/Binary/YYKit","<MkDir /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework>","<MkDir /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers>","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Info.plist","<Touch /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework>","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources/YYKit_vers.c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYKit.LinkFileList","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYKit.LinkFileList","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-all-non-framework-target-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-all-target-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-generated-files.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-own-target-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-project-headers.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit.hmap","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/all-product-headers.yaml","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/module.modulemap"],"outputs":["<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--end>"]}
"Gate target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--entry": {"tool":"phony","inputs":["<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-Debug-iphoneos-stale-file-removal>","<CreateBuildDirectory-/tmp/Pods.dst>","<CreateBuildDirectory-/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build>","<CreateBuildDirectory-/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--begin-compiling>"],"outputs":["<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--entry>"]}
"Gate target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--generated-headers": {"tool":"phony","inputs":["<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--begin-compiling>"],"outputs":["<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--generated-headers>"]}
"Gate target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--immediate": {"tool":"phony","inputs":["<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-Debug-iphoneos-stale-file-removal>","<CreateBuildDirectory-/tmp/Pods.dst>","<CreateBuildDirectory-/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build>","<CreateBuildDirectory-/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build>"],"outputs":["<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--immediate>"]}
"Gate target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--modules-ready": {"tool":"phony","inputs":["<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--begin-compiling>","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/CALayer+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/CALayer+YYWebImage.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/MKAnnotationView+YYWebImage.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/NSArray+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/NSAttributedString+YYText.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/NSBundle+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/NSData+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/NSDate+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/NSDictionary+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/NSKeyedUnarchiver+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/NSNotificationCenter+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/NSNumber+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/NSObject+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/NSObject+YYAddForARC.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/NSObject+YYAddForKVO.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/NSObject+YYModel.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/NSParagraphStyle+YYText.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/NSString+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/NSThread+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/NSTimer+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/UIApplication+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/UIBarButtonItem+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/UIBezierPath+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/UIButton+YYWebImage.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/UIColor+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/UIControl+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/UIDevice+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/UIFont+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/UIGestureRecognizer+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/UIImage+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/UIImageView+YYWebImage.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/UIPasteboard+YYText.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/UIScreen+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/UIScrollView+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/UITableView+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/UITextField+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/UIView+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYAnimatedImageView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYAsyncLayer.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYCGUtilities.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYCache.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYClassInfo.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYDiskCache.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYDispatchQueuePool.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYFileHash.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYFrameImage.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYGestureRecognizer.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYImage.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYImageCache.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYImageCoder.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYKVStorage.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYKeychain.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYKit-dummy.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYKit_vers.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYLabel.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYMemoryCache.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYReachability.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYSentinel.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYSpriteSheetImage.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYTextArchiver.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYTextAttribute.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYTextContainerView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYTextDebugOption.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYTextEffectWindow.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYTextInput.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYTextKeyboardManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYTextLayout.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYTextLine.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYTextMagnifier.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYTextParser.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYTextRubyAnnotation.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYTextRunDelegate.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYTextSelectionView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYTextUtilities.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYTextView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYThreadSafeArray.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYThreadSafeDictionary.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYTimer.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYTransaction.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYWeakProxy.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYWebImageManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYWebImageOperation.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/_YYWebImageSetter.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/CALayer+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/CALayer+YYWebImage.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/MKAnnotationView+YYWebImage.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/NSArray+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/NSAttributedString+YYText.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/NSBundle+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/NSData+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/NSDate+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/NSDictionary+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/NSKeyedUnarchiver+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/NSNotificationCenter+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/NSNumber+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/NSObject+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/NSObject+YYAddForARC.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/NSObject+YYAddForKVO.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/NSObject+YYModel.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/NSParagraphStyle+YYText.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/NSString+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/NSThread+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/NSTimer+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/UIApplication+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/UIBarButtonItem+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/UIBezierPath+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/UIButton+YYWebImage.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/UIColor+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/UIControl+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/UIDevice+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/UIFont+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/UIGestureRecognizer+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/UIImage+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/UIImageView+YYWebImage.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/UIPasteboard+YYText.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/UIScreen+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/UIScrollView+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/UITableView+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/UITextField+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/UIView+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYAnimatedImageView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYAsyncLayer.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYCGUtilities.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYCache.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYClassInfo.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYDiskCache.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYDispatchQueuePool.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYFileHash.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYFrameImage.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYGestureRecognizer.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYImage.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYImageCache.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYImageCoder.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYKVStorage.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYKeychain.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYKit-dummy.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYKit_vers.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYLabel.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYMemoryCache.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYReachability.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYSentinel.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYSpriteSheetImage.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYTextArchiver.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYTextAttribute.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYTextContainerView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYTextDebugOption.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYTextEffectWindow.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYTextInput.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYTextKeyboardManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYTextLayout.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYTextLine.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYTextMagnifier.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYTextParser.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYTextRubyAnnotation.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYTextRunDelegate.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYTextSelectionView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYTextUtilities.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYTextView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYThreadSafeArray.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYThreadSafeDictionary.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYTimer.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYTransaction.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYWeakProxy.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYWebImageManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYWebImageOperation.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/_YYWebImageSetter.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYKit-umbrella.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/NSArray+YYAdd.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/NSBundle+YYAdd.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/NSData+YYAdd.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/NSDate+YYAdd.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/NSDictionary+YYAdd.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/NSKeyedUnarchiver+YYAdd.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/NSNotificationCenter+YYAdd.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/NSNumber+YYAdd.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/NSObject+YYAdd.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/NSObject+YYAddForARC.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/NSObject+YYAddForKVO.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/NSString+YYAdd.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/NSThread+YYAdd.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/NSTimer+YYAdd.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/CALayer+YYAdd.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYCGUtilities.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/UIApplication+YYAdd.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/UIBarButtonItem+YYAdd.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/UIBezierPath+YYAdd.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/UIColor+YYAdd.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/UIControl+YYAdd.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/UIDevice+YYAdd.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/UIFont+YYAdd.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/UIGestureRecognizer+YYAdd.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/UIImage+YYAdd.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/UIScreen+YYAdd.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/UIScrollView+YYAdd.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/UITableView+YYAdd.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/UITextField+YYAdd.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/UIView+YYAdd.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYKitMacro.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYCache.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYDiskCache.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYKVStorage.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYMemoryCache.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/CALayer+YYWebImage.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/MKAnnotationView+YYWebImage.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/UIButton+YYWebImage.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/UIImageView+YYWebImage.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/_YYWebImageSetter.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYAnimatedImageView.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYFrameImage.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYImage.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYImageCache.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYImageCoder.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYSpriteSheetImage.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYWebImageManager.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYWebImageOperation.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/NSObject+YYModel.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYClassInfo.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYTextContainerView.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYTextDebugOption.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYTextEffectWindow.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYTextInput.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYTextKeyboardManager.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYTextLayout.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYTextLine.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYTextMagnifier.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYTextSelectionView.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/NSAttributedString+YYText.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/NSParagraphStyle+YYText.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/UIPasteboard+YYText.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYTextArchiver.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYTextAttribute.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYTextParser.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYTextRubyAnnotation.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYTextRunDelegate.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYTextUtilities.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYLabel.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYTextView.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYAsyncLayer.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYDispatchQueuePool.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYFileHash.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYGestureRecognizer.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYKeychain.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYReachability.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYSentinel.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYThreadSafeArray.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYThreadSafeDictionary.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYTimer.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYTransaction.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYWeakProxy.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYKit.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources/YYKit_vers.c"],"outputs":["<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--modules-ready>"]}
"Gate target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--phase0-copy-headers": {"tool":"phony","inputs":["<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--HeadermapTaskProducer>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--begin-compiling>","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYKit-umbrella.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/NSArray+YYAdd.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/NSBundle+YYAdd.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/NSData+YYAdd.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/NSDate+YYAdd.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/NSDictionary+YYAdd.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/NSKeyedUnarchiver+YYAdd.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/NSNotificationCenter+YYAdd.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/NSNumber+YYAdd.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/NSObject+YYAdd.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/NSObject+YYAddForARC.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/NSObject+YYAddForKVO.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/NSString+YYAdd.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/NSThread+YYAdd.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/NSTimer+YYAdd.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/CALayer+YYAdd.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYCGUtilities.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/UIApplication+YYAdd.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/UIBarButtonItem+YYAdd.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/UIBezierPath+YYAdd.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/UIColor+YYAdd.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/UIControl+YYAdd.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/UIDevice+YYAdd.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/UIFont+YYAdd.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/UIGestureRecognizer+YYAdd.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/UIImage+YYAdd.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/UIScreen+YYAdd.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/UIScrollView+YYAdd.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/UITableView+YYAdd.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/UITextField+YYAdd.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/UIView+YYAdd.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYKitMacro.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYCache.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYDiskCache.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYKVStorage.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYMemoryCache.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/CALayer+YYWebImage.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/MKAnnotationView+YYWebImage.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/UIButton+YYWebImage.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/UIImageView+YYWebImage.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/_YYWebImageSetter.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYAnimatedImageView.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYFrameImage.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYImage.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYImageCache.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYImageCoder.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYSpriteSheetImage.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYWebImageManager.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYWebImageOperation.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/NSObject+YYModel.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYClassInfo.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYTextContainerView.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYTextDebugOption.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYTextEffectWindow.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYTextInput.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYTextKeyboardManager.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYTextLayout.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYTextLine.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYTextMagnifier.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYTextSelectionView.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/NSAttributedString+YYText.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/NSParagraphStyle+YYText.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/UIPasteboard+YYText.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYTextArchiver.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYTextAttribute.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYTextParser.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYTextRubyAnnotation.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYTextRunDelegate.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYTextUtilities.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYLabel.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYTextView.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYAsyncLayer.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYDispatchQueuePool.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYFileHash.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYGestureRecognizer.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYKeychain.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYReachability.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYSentinel.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYThreadSafeArray.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYThreadSafeDictionary.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYTimer.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYTransaction.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYWeakProxy.h","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYKit.h"],"outputs":["<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--phase0-copy-headers>"]}
"Gate target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--phase1-compile-sources": {"tool":"phony","inputs":["<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--phase0-copy-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--begin-compiling>","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/CALayer+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/CALayer+YYWebImage.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/MKAnnotationView+YYWebImage.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/NSArray+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/NSAttributedString+YYText.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/NSBundle+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/NSData+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/NSDate+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/NSDictionary+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/NSKeyedUnarchiver+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/NSNotificationCenter+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/NSNumber+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/NSObject+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/NSObject+YYAddForARC.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/NSObject+YYAddForKVO.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/NSObject+YYModel.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/NSParagraphStyle+YYText.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/NSString+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/NSThread+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/NSTimer+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/UIApplication+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/UIBarButtonItem+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/UIBezierPath+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/UIButton+YYWebImage.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/UIColor+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/UIControl+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/UIDevice+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/UIFont+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/UIGestureRecognizer+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/UIImage+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/UIImageView+YYWebImage.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/UIPasteboard+YYText.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/UIScreen+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/UIScrollView+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/UITableView+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/UITextField+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/UIView+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYAnimatedImageView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYAsyncLayer.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYCGUtilities.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYCache.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYClassInfo.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYDiskCache.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYDispatchQueuePool.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYFileHash.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYFrameImage.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYGestureRecognizer.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYImage.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYImageCache.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYImageCoder.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYKVStorage.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYKeychain.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYKit-dummy.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYKit_vers.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYLabel.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYMemoryCache.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYReachability.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYSentinel.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYSpriteSheetImage.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYTextArchiver.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYTextAttribute.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYTextContainerView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYTextDebugOption.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYTextEffectWindow.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYTextInput.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYTextKeyboardManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYTextLayout.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYTextLine.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYTextMagnifier.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYTextParser.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYTextRubyAnnotation.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYTextRunDelegate.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYTextSelectionView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYTextUtilities.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYTextView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYThreadSafeArray.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYThreadSafeDictionary.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYTimer.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYTransaction.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYWeakProxy.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYWebImageManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYWebImageOperation.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/_YYWebImageSetter.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/CALayer+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/CALayer+YYWebImage.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/MKAnnotationView+YYWebImage.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/NSArray+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/NSAttributedString+YYText.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/NSBundle+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/NSData+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/NSDate+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/NSDictionary+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/NSKeyedUnarchiver+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/NSNotificationCenter+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/NSNumber+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/NSObject+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/NSObject+YYAddForARC.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/NSObject+YYAddForKVO.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/NSObject+YYModel.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/NSParagraphStyle+YYText.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/NSString+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/NSThread+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/NSTimer+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/UIApplication+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/UIBarButtonItem+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/UIBezierPath+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/UIButton+YYWebImage.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/UIColor+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/UIControl+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/UIDevice+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/UIFont+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/UIGestureRecognizer+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/UIImage+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/UIImageView+YYWebImage.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/UIPasteboard+YYText.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/UIScreen+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/UIScrollView+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/UITableView+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/UITextField+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/UIView+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYAnimatedImageView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYAsyncLayer.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYCGUtilities.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYCache.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYClassInfo.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYDiskCache.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYDispatchQueuePool.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYFileHash.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYFrameImage.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYGestureRecognizer.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYImage.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYImageCache.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYImageCoder.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYKVStorage.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYKeychain.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYKit-dummy.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYKit_vers.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYLabel.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYMemoryCache.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYReachability.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYSentinel.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYSpriteSheetImage.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYTextArchiver.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYTextAttribute.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYTextContainerView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYTextDebugOption.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYTextEffectWindow.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYTextInput.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYTextKeyboardManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYTextLayout.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYTextLine.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYTextMagnifier.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYTextParser.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYTextRubyAnnotation.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYTextRunDelegate.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYTextSelectionView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYTextUtilities.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYTextView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYThreadSafeArray.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYThreadSafeDictionary.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYTimer.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYTransaction.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYWeakProxy.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYWebImageManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYWebImageOperation.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/_YYWebImageSetter.o","<Linked Binary /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/YYKit>","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/Binary/YYKit","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/Binary/YYKit","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources/YYKit_vers.c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYKit.LinkFileList","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYKit.LinkFileList"],"outputs":["<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--phase1-compile-sources>"]}
"Gate target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--phase3-copy-bundle-resources": {"tool":"phony","inputs":["<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--phase1-compile-sources>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--begin-compiling>"],"outputs":["<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--phase3-copy-bundle-resources>"]}
"target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/arm64/AFAutoPurgingImageCache.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/AFNetworking/UIKit+AFNetworking/AFAutoPurgingImageCache.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/arm64/AFAutoPurgingImageCache.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/AFNetworking/UIKit+AFNetworking/AFAutoPurgingImageCache.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/AFNetworking/AFNetworking-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/AFNetworking/UIKit+AFNetworking/AFAutoPurgingImageCache.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/module.modulemap","<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--generated-headers>","<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--phase0-copy-headers>","<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/arm64/AFAutoPurgingImageCache.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=AFNetworking","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/AFNetworking-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/AFNetworking-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/AFNetworking-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/AFNetworking-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/AFNetworking/AFNetworking-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/arm64/AFAutoPurgingImageCache.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/arm64/AFAutoPurgingImageCache.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/AFNetworking/UIKit+AFNetworking/AFAutoPurgingImageCache.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/arm64/AFAutoPurgingImageCache.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/arm64/AFAutoPurgingImageCache.d"],"deps-style":"makefile","signature":"6ebbdf11284b1754338e9eddb0281e9b"}
"target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/arm64/AFHTTPSessionManager.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/AFNetworking/AFNetworking/AFHTTPSessionManager.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/arm64/AFHTTPSessionManager.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/AFNetworking/AFNetworking/AFHTTPSessionManager.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/AFNetworking/AFNetworking-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/AFNetworking/AFNetworking/AFHTTPSessionManager.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/module.modulemap","<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--generated-headers>","<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--phase0-copy-headers>","<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/arm64/AFHTTPSessionManager.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=AFNetworking","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/AFNetworking-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/AFNetworking-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/AFNetworking-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/AFNetworking-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/AFNetworking/AFNetworking-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/arm64/AFHTTPSessionManager.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/arm64/AFHTTPSessionManager.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/AFNetworking/AFNetworking/AFHTTPSessionManager.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/arm64/AFHTTPSessionManager.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/arm64/AFHTTPSessionManager.d"],"deps-style":"makefile","signature":"6c4963d3956ff4c6795a2671e844df0b"}
"target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/arm64/AFImageDownloader.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/AFNetworking/UIKit+AFNetworking/AFImageDownloader.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/arm64/AFImageDownloader.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/AFNetworking/UIKit+AFNetworking/AFImageDownloader.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/AFNetworking/AFNetworking-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/AFNetworking/UIKit+AFNetworking/AFImageDownloader.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/module.modulemap","<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--generated-headers>","<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--phase0-copy-headers>","<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/arm64/AFImageDownloader.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=AFNetworking","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/AFNetworking-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/AFNetworking-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/AFNetworking-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/AFNetworking-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/AFNetworking/AFNetworking-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/arm64/AFImageDownloader.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/arm64/AFImageDownloader.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/AFNetworking/UIKit+AFNetworking/AFImageDownloader.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/arm64/AFImageDownloader.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/arm64/AFImageDownloader.d"],"deps-style":"makefile","signature":"c8674d244c1015634980dc40ad9a1547"}
"target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/arm64/AFNetworkActivityIndicatorManager.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/AFNetworking/UIKit+AFNetworking/AFNetworkActivityIndicatorManager.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/arm64/AFNetworkActivityIndicatorManager.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/AFNetworking/UIKit+AFNetworking/AFNetworkActivityIndicatorManager.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/AFNetworking/AFNetworking-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/AFNetworking/UIKit+AFNetworking/AFNetworkActivityIndicatorManager.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/module.modulemap","<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--generated-headers>","<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--phase0-copy-headers>","<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/arm64/AFNetworkActivityIndicatorManager.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=AFNetworking","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/AFNetworking-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/AFNetworking-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/AFNetworking-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/AFNetworking-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/AFNetworking/AFNetworking-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/arm64/AFNetworkActivityIndicatorManager.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/arm64/AFNetworkActivityIndicatorManager.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/AFNetworking/UIKit+AFNetworking/AFNetworkActivityIndicatorManager.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/arm64/AFNetworkActivityIndicatorManager.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/arm64/AFNetworkActivityIndicatorManager.d"],"deps-style":"makefile","signature":"e6db15dd127651af4c6192cf4fb697ba"}
"target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/arm64/AFNetworkReachabilityManager.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/AFNetworking/AFNetworking/AFNetworkReachabilityManager.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/arm64/AFNetworkReachabilityManager.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/AFNetworking/AFNetworking/AFNetworkReachabilityManager.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/AFNetworking/AFNetworking-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/AFNetworking/AFNetworking/AFNetworkReachabilityManager.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/module.modulemap","<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--generated-headers>","<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--phase0-copy-headers>","<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/arm64/AFNetworkReachabilityManager.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=AFNetworking","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/AFNetworking-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/AFNetworking-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/AFNetworking-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/AFNetworking-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/AFNetworking/AFNetworking-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/arm64/AFNetworkReachabilityManager.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/arm64/AFNetworkReachabilityManager.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/AFNetworking/AFNetworking/AFNetworkReachabilityManager.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/arm64/AFNetworkReachabilityManager.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/arm64/AFNetworkReachabilityManager.d"],"deps-style":"makefile","signature":"c2aad62988fc3e2fb10537aef4da622f"}
"target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/arm64/AFNetworking-dummy.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/AFNetworking/AFNetworking-dummy.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/arm64/AFNetworking-dummy.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/AFNetworking/AFNetworking-dummy.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/AFNetworking/AFNetworking-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/AFNetworking/AFNetworking-dummy.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/module.modulemap","<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--generated-headers>","<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--phase0-copy-headers>","<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/arm64/AFNetworking-dummy.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=AFNetworking","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/AFNetworking-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/AFNetworking-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/AFNetworking-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/AFNetworking-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/AFNetworking/AFNetworking-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/arm64/AFNetworking-dummy.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/arm64/AFNetworking-dummy.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/AFNetworking/AFNetworking-dummy.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/arm64/AFNetworking-dummy.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/arm64/AFNetworking-dummy.d"],"deps-style":"makefile","signature":"759fa143936bd32fc7e2b5cb441f7fbe"}
"target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/arm64/AFNetworking_vers.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/DerivedSources/AFNetworking_vers.c normal arm64 c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/arm64/AFNetworking_vers.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/DerivedSources/AFNetworking_vers.c normal arm64 c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/DerivedSources/AFNetworking_vers.c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/module.modulemap","<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--generated-headers>","<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--phase0-copy-headers>","<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/arm64/AFNetworking_vers.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c","-target","arm64-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=AFNetworking","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Werror=deprecated-objc-isa-usage","-Werror=objc-root-class","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/AFNetworking-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/AFNetworking-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/AFNetworking-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/AFNetworking-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/arm64/AFNetworking_vers.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/arm64/AFNetworking_vers.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/DerivedSources/AFNetworking_vers.c","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/arm64/AFNetworking_vers.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/arm64/AFNetworking_vers.d"],"deps-style":"makefile","signature":"c5477fd42e5ee0a9aed5c8216d54ce7a"}
"target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/arm64/AFSecurityPolicy.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/AFNetworking/AFNetworking/AFSecurityPolicy.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/arm64/AFSecurityPolicy.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/AFNetworking/AFNetworking/AFSecurityPolicy.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/AFNetworking/AFNetworking-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/AFNetworking/AFNetworking/AFSecurityPolicy.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/module.modulemap","<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--generated-headers>","<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--phase0-copy-headers>","<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/arm64/AFSecurityPolicy.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=AFNetworking","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/AFNetworking-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/AFNetworking-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/AFNetworking-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/AFNetworking-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/AFNetworking/AFNetworking-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/arm64/AFSecurityPolicy.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/arm64/AFSecurityPolicy.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/AFNetworking/AFNetworking/AFSecurityPolicy.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/arm64/AFSecurityPolicy.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/arm64/AFSecurityPolicy.d"],"deps-style":"makefile","signature":"f0d4d35591df33fbaa2716607db9f478"}
"target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/arm64/AFURLRequestSerialization.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/AFNetworking/AFNetworking/AFURLRequestSerialization.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/arm64/AFURLRequestSerialization.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/AFNetworking/AFNetworking/AFURLRequestSerialization.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/AFNetworking/AFNetworking-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/AFNetworking/AFNetworking/AFURLRequestSerialization.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/module.modulemap","<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--generated-headers>","<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--phase0-copy-headers>","<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/arm64/AFURLRequestSerialization.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=AFNetworking","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/AFNetworking-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/AFNetworking-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/AFNetworking-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/AFNetworking-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/AFNetworking/AFNetworking-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/arm64/AFURLRequestSerialization.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/arm64/AFURLRequestSerialization.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/AFNetworking/AFNetworking/AFURLRequestSerialization.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/arm64/AFURLRequestSerialization.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/arm64/AFURLRequestSerialization.d"],"deps-style":"makefile","signature":"b712cd253a1c821568a4470297c9686c"}
"target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/arm64/AFURLResponseSerialization.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/AFNetworking/AFNetworking/AFURLResponseSerialization.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/arm64/AFURLResponseSerialization.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/AFNetworking/AFNetworking/AFURLResponseSerialization.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/AFNetworking/AFNetworking-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/AFNetworking/AFNetworking/AFURLResponseSerialization.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/module.modulemap","<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--generated-headers>","<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--phase0-copy-headers>","<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/arm64/AFURLResponseSerialization.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=AFNetworking","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/AFNetworking-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/AFNetworking-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/AFNetworking-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/AFNetworking-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/AFNetworking/AFNetworking-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/arm64/AFURLResponseSerialization.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/arm64/AFURLResponseSerialization.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/AFNetworking/AFNetworking/AFURLResponseSerialization.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/arm64/AFURLResponseSerialization.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/arm64/AFURLResponseSerialization.d"],"deps-style":"makefile","signature":"8ef0a978a6bd9d69590231a777768b60"}
"target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/arm64/AFURLSessionManager.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/AFNetworking/AFNetworking/AFURLSessionManager.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/arm64/AFURLSessionManager.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/AFNetworking/AFNetworking/AFURLSessionManager.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/AFNetworking/AFNetworking-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/AFNetworking/AFNetworking/AFURLSessionManager.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/module.modulemap","<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--generated-headers>","<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--phase0-copy-headers>","<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/arm64/AFURLSessionManager.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=AFNetworking","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/AFNetworking-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/AFNetworking-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/AFNetworking-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/AFNetworking-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/AFNetworking/AFNetworking-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/arm64/AFURLSessionManager.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/arm64/AFURLSessionManager.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/AFNetworking/AFNetworking/AFURLSessionManager.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/arm64/AFURLSessionManager.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/arm64/AFURLSessionManager.d"],"deps-style":"makefile","signature":"ee509f32d8ee4c27c4b8baa27cf659e7"}
"target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/arm64/UIActivityIndicatorView+AFNetworking.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/AFNetworking/UIKit+AFNetworking/UIActivityIndicatorView+AFNetworking.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/arm64/UIActivityIndicatorView+AFNetworking.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/AFNetworking/UIKit+AFNetworking/UIActivityIndicatorView+AFNetworking.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/AFNetworking/AFNetworking-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/AFNetworking/UIKit+AFNetworking/UIActivityIndicatorView+AFNetworking.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/module.modulemap","<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--generated-headers>","<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--phase0-copy-headers>","<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/arm64/UIActivityIndicatorView+AFNetworking.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=AFNetworking","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/AFNetworking-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/AFNetworking-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/AFNetworking-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/AFNetworking-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/AFNetworking/AFNetworking-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/arm64/UIActivityIndicatorView+AFNetworking.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/arm64/UIActivityIndicatorView+AFNetworking.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/AFNetworking/UIKit+AFNetworking/UIActivityIndicatorView+AFNetworking.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/arm64/UIActivityIndicatorView+AFNetworking.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/arm64/UIActivityIndicatorView+AFNetworking.d"],"deps-style":"makefile","signature":"4047ee11a1db7ad6feff9b02e93ec26b"}
"target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/arm64/UIButton+AFNetworking.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/AFNetworking/UIKit+AFNetworking/UIButton+AFNetworking.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/arm64/UIButton+AFNetworking.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/AFNetworking/UIKit+AFNetworking/UIButton+AFNetworking.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/AFNetworking/AFNetworking-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/AFNetworking/UIKit+AFNetworking/UIButton+AFNetworking.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/module.modulemap","<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--generated-headers>","<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--phase0-copy-headers>","<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/arm64/UIButton+AFNetworking.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=AFNetworking","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/AFNetworking-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/AFNetworking-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/AFNetworking-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/AFNetworking-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/AFNetworking/AFNetworking-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/arm64/UIButton+AFNetworking.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/arm64/UIButton+AFNetworking.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/AFNetworking/UIKit+AFNetworking/UIButton+AFNetworking.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/arm64/UIButton+AFNetworking.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/arm64/UIButton+AFNetworking.d"],"deps-style":"makefile","signature":"449801120cc021195baa46c6142f5218"}
"target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/arm64/UIImageView+AFNetworking.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/AFNetworking/UIKit+AFNetworking/UIImageView+AFNetworking.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/arm64/UIImageView+AFNetworking.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/AFNetworking/UIKit+AFNetworking/UIImageView+AFNetworking.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/AFNetworking/AFNetworking-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/AFNetworking/UIKit+AFNetworking/UIImageView+AFNetworking.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/module.modulemap","<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--generated-headers>","<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--phase0-copy-headers>","<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/arm64/UIImageView+AFNetworking.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=AFNetworking","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/AFNetworking-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/AFNetworking-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/AFNetworking-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/AFNetworking-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/AFNetworking/AFNetworking-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/arm64/UIImageView+AFNetworking.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/arm64/UIImageView+AFNetworking.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/AFNetworking/UIKit+AFNetworking/UIImageView+AFNetworking.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/arm64/UIImageView+AFNetworking.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/arm64/UIImageView+AFNetworking.d"],"deps-style":"makefile","signature":"5bf806a7a1bc9cb49e2ffb52e3ddd33c"}
"target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/arm64/UIProgressView+AFNetworking.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/AFNetworking/UIKit+AFNetworking/UIProgressView+AFNetworking.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/arm64/UIProgressView+AFNetworking.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/AFNetworking/UIKit+AFNetworking/UIProgressView+AFNetworking.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/AFNetworking/AFNetworking-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/AFNetworking/UIKit+AFNetworking/UIProgressView+AFNetworking.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/module.modulemap","<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--generated-headers>","<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--phase0-copy-headers>","<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/arm64/UIProgressView+AFNetworking.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=AFNetworking","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/AFNetworking-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/AFNetworking-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/AFNetworking-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/AFNetworking-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/AFNetworking/AFNetworking-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/arm64/UIProgressView+AFNetworking.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/arm64/UIProgressView+AFNetworking.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/AFNetworking/UIKit+AFNetworking/UIProgressView+AFNetworking.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/arm64/UIProgressView+AFNetworking.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/arm64/UIProgressView+AFNetworking.d"],"deps-style":"makefile","signature":"38cad8e63d470d35c763179ec56845fe"}
"target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/arm64/UIRefreshControl+AFNetworking.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/AFNetworking/UIKit+AFNetworking/UIRefreshControl+AFNetworking.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/arm64/UIRefreshControl+AFNetworking.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/AFNetworking/UIKit+AFNetworking/UIRefreshControl+AFNetworking.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/AFNetworking/AFNetworking-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/AFNetworking/UIKit+AFNetworking/UIRefreshControl+AFNetworking.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/module.modulemap","<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--generated-headers>","<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--phase0-copy-headers>","<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/arm64/UIRefreshControl+AFNetworking.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=AFNetworking","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/AFNetworking-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/AFNetworking-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/AFNetworking-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/AFNetworking-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/AFNetworking/AFNetworking-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/arm64/UIRefreshControl+AFNetworking.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/arm64/UIRefreshControl+AFNetworking.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/AFNetworking/UIKit+AFNetworking/UIRefreshControl+AFNetworking.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/arm64/UIRefreshControl+AFNetworking.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/arm64/UIRefreshControl+AFNetworking.d"],"deps-style":"makefile","signature":"c40a32d6a5082fb9d907f0a104f9ed34"}
"target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/arm64/UIWebView+AFNetworking.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/AFNetworking/UIKit+AFNetworking/UIWebView+AFNetworking.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/arm64/UIWebView+AFNetworking.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/AFNetworking/UIKit+AFNetworking/UIWebView+AFNetworking.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/AFNetworking/AFNetworking-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/AFNetworking/UIKit+AFNetworking/UIWebView+AFNetworking.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/module.modulemap","<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--generated-headers>","<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--phase0-copy-headers>","<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/arm64/UIWebView+AFNetworking.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=AFNetworking","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/AFNetworking-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/AFNetworking-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/AFNetworking-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/AFNetworking-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/AFNetworking/AFNetworking-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/arm64/UIWebView+AFNetworking.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/arm64/UIWebView+AFNetworking.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/AFNetworking/UIKit+AFNetworking/UIWebView+AFNetworking.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/arm64/UIWebView+AFNetworking.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/arm64/UIWebView+AFNetworking.d"],"deps-style":"makefile","signature":"c4733e03d3c957a196cdced91bd54603"}
"target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/armv7/AFAutoPurgingImageCache.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/AFNetworking/UIKit+AFNetworking/AFAutoPurgingImageCache.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/armv7/AFAutoPurgingImageCache.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/AFNetworking/UIKit+AFNetworking/AFAutoPurgingImageCache.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/AFNetworking/AFNetworking-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/AFNetworking/UIKit+AFNetworking/AFAutoPurgingImageCache.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/module.modulemap","<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--generated-headers>","<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--phase0-copy-headers>","<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/armv7/AFAutoPurgingImageCache.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=AFNetworking","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/AFNetworking-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/AFNetworking-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/AFNetworking-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/AFNetworking-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/AFNetworking/AFNetworking-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/armv7/AFAutoPurgingImageCache.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/armv7/AFAutoPurgingImageCache.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/AFNetworking/UIKit+AFNetworking/AFAutoPurgingImageCache.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/armv7/AFAutoPurgingImageCache.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/armv7/AFAutoPurgingImageCache.d"],"deps-style":"makefile","signature":"5aed2eb970516165503fb8c7b9ea3309"}
"target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/armv7/AFHTTPSessionManager.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/AFNetworking/AFNetworking/AFHTTPSessionManager.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/armv7/AFHTTPSessionManager.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/AFNetworking/AFNetworking/AFHTTPSessionManager.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/AFNetworking/AFNetworking-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/AFNetworking/AFNetworking/AFHTTPSessionManager.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/module.modulemap","<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--generated-headers>","<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--phase0-copy-headers>","<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/armv7/AFHTTPSessionManager.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=AFNetworking","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/AFNetworking-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/AFNetworking-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/AFNetworking-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/AFNetworking-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/AFNetworking/AFNetworking-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/armv7/AFHTTPSessionManager.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/armv7/AFHTTPSessionManager.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/AFNetworking/AFNetworking/AFHTTPSessionManager.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/armv7/AFHTTPSessionManager.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/armv7/AFHTTPSessionManager.d"],"deps-style":"makefile","signature":"ee3d410964046d4c685b3197925b45be"}
"target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/armv7/AFImageDownloader.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/AFNetworking/UIKit+AFNetworking/AFImageDownloader.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/armv7/AFImageDownloader.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/AFNetworking/UIKit+AFNetworking/AFImageDownloader.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/AFNetworking/AFNetworking-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/AFNetworking/UIKit+AFNetworking/AFImageDownloader.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/module.modulemap","<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--generated-headers>","<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--phase0-copy-headers>","<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/armv7/AFImageDownloader.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=AFNetworking","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/AFNetworking-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/AFNetworking-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/AFNetworking-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/AFNetworking-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/AFNetworking/AFNetworking-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/armv7/AFImageDownloader.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/armv7/AFImageDownloader.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/AFNetworking/UIKit+AFNetworking/AFImageDownloader.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/armv7/AFImageDownloader.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/armv7/AFImageDownloader.d"],"deps-style":"makefile","signature":"3eaf5fc63bec8d43f190ff97837fba4a"}
"target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/armv7/AFNetworkActivityIndicatorManager.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/AFNetworking/UIKit+AFNetworking/AFNetworkActivityIndicatorManager.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/armv7/AFNetworkActivityIndicatorManager.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/AFNetworking/UIKit+AFNetworking/AFNetworkActivityIndicatorManager.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/AFNetworking/AFNetworking-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/AFNetworking/UIKit+AFNetworking/AFNetworkActivityIndicatorManager.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/module.modulemap","<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--generated-headers>","<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--phase0-copy-headers>","<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/armv7/AFNetworkActivityIndicatorManager.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=AFNetworking","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/AFNetworking-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/AFNetworking-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/AFNetworking-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/AFNetworking-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/AFNetworking/AFNetworking-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/armv7/AFNetworkActivityIndicatorManager.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/armv7/AFNetworkActivityIndicatorManager.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/AFNetworking/UIKit+AFNetworking/AFNetworkActivityIndicatorManager.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/armv7/AFNetworkActivityIndicatorManager.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/armv7/AFNetworkActivityIndicatorManager.d"],"deps-style":"makefile","signature":"bfe9209c330fe73d75afaa5a84a8c1f8"}
"target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/armv7/AFNetworkReachabilityManager.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/AFNetworking/AFNetworking/AFNetworkReachabilityManager.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/armv7/AFNetworkReachabilityManager.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/AFNetworking/AFNetworking/AFNetworkReachabilityManager.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/AFNetworking/AFNetworking-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/AFNetworking/AFNetworking/AFNetworkReachabilityManager.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/module.modulemap","<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--generated-headers>","<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--phase0-copy-headers>","<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/armv7/AFNetworkReachabilityManager.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=AFNetworking","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/AFNetworking-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/AFNetworking-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/AFNetworking-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/AFNetworking-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/AFNetworking/AFNetworking-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/armv7/AFNetworkReachabilityManager.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/armv7/AFNetworkReachabilityManager.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/AFNetworking/AFNetworking/AFNetworkReachabilityManager.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/armv7/AFNetworkReachabilityManager.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/armv7/AFNetworkReachabilityManager.d"],"deps-style":"makefile","signature":"882685e73e068496316a077fd4c81284"}
"target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/armv7/AFNetworking-dummy.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/AFNetworking/AFNetworking-dummy.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/armv7/AFNetworking-dummy.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/AFNetworking/AFNetworking-dummy.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/AFNetworking/AFNetworking-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/AFNetworking/AFNetworking-dummy.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/module.modulemap","<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--generated-headers>","<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--phase0-copy-headers>","<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/armv7/AFNetworking-dummy.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=AFNetworking","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/AFNetworking-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/AFNetworking-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/AFNetworking-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/AFNetworking-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/AFNetworking/AFNetworking-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/armv7/AFNetworking-dummy.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/armv7/AFNetworking-dummy.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/AFNetworking/AFNetworking-dummy.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/armv7/AFNetworking-dummy.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/armv7/AFNetworking-dummy.d"],"deps-style":"makefile","signature":"b8a0524a2fb01b76608fd16adeced39c"}
"target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/armv7/AFNetworking_vers.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/DerivedSources/AFNetworking_vers.c normal armv7 c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/armv7/AFNetworking_vers.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/DerivedSources/AFNetworking_vers.c normal armv7 c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/DerivedSources/AFNetworking_vers.c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/module.modulemap","<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--generated-headers>","<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--phase0-copy-headers>","<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/armv7/AFNetworking_vers.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c","-target","armv7-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=AFNetworking","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Werror=deprecated-objc-isa-usage","-Werror=objc-root-class","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/AFNetworking-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/AFNetworking-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/AFNetworking-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/AFNetworking-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/armv7/AFNetworking_vers.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/armv7/AFNetworking_vers.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/DerivedSources/AFNetworking_vers.c","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/armv7/AFNetworking_vers.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/armv7/AFNetworking_vers.d"],"deps-style":"makefile","signature":"077b58a2923e68d393637a83f1377869"}
"target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/armv7/AFSecurityPolicy.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/AFNetworking/AFNetworking/AFSecurityPolicy.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/armv7/AFSecurityPolicy.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/AFNetworking/AFNetworking/AFSecurityPolicy.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/AFNetworking/AFNetworking-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/AFNetworking/AFNetworking/AFSecurityPolicy.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/module.modulemap","<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--generated-headers>","<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--phase0-copy-headers>","<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/armv7/AFSecurityPolicy.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=AFNetworking","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/AFNetworking-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/AFNetworking-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/AFNetworking-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/AFNetworking-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/AFNetworking/AFNetworking-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/armv7/AFSecurityPolicy.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/armv7/AFSecurityPolicy.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/AFNetworking/AFNetworking/AFSecurityPolicy.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/armv7/AFSecurityPolicy.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/armv7/AFSecurityPolicy.d"],"deps-style":"makefile","signature":"b7ac4412d45cebbc28abfc3809a1e6a9"}
"target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/armv7/AFURLRequestSerialization.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/AFNetworking/AFNetworking/AFURLRequestSerialization.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/armv7/AFURLRequestSerialization.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/AFNetworking/AFNetworking/AFURLRequestSerialization.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/AFNetworking/AFNetworking-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/AFNetworking/AFNetworking/AFURLRequestSerialization.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/module.modulemap","<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--generated-headers>","<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--phase0-copy-headers>","<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/armv7/AFURLRequestSerialization.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=AFNetworking","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/AFNetworking-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/AFNetworking-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/AFNetworking-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/AFNetworking-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/AFNetworking/AFNetworking-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/armv7/AFURLRequestSerialization.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/armv7/AFURLRequestSerialization.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/AFNetworking/AFNetworking/AFURLRequestSerialization.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/armv7/AFURLRequestSerialization.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/armv7/AFURLRequestSerialization.d"],"deps-style":"makefile","signature":"9fa312a415dd0f87b26bc79b181bd533"}
"target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/armv7/AFURLResponseSerialization.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/AFNetworking/AFNetworking/AFURLResponseSerialization.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/armv7/AFURLResponseSerialization.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/AFNetworking/AFNetworking/AFURLResponseSerialization.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/AFNetworking/AFNetworking-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/AFNetworking/AFNetworking/AFURLResponseSerialization.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/module.modulemap","<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--generated-headers>","<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--phase0-copy-headers>","<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/armv7/AFURLResponseSerialization.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=AFNetworking","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/AFNetworking-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/AFNetworking-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/AFNetworking-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/AFNetworking-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/AFNetworking/AFNetworking-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/armv7/AFURLResponseSerialization.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/armv7/AFURLResponseSerialization.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/AFNetworking/AFNetworking/AFURLResponseSerialization.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/armv7/AFURLResponseSerialization.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/armv7/AFURLResponseSerialization.d"],"deps-style":"makefile","signature":"f2dd53c68ce0600090e3ed89ffb0a414"}
"target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/armv7/AFURLSessionManager.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/AFNetworking/AFNetworking/AFURLSessionManager.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/armv7/AFURLSessionManager.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/AFNetworking/AFNetworking/AFURLSessionManager.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/AFNetworking/AFNetworking-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/AFNetworking/AFNetworking/AFURLSessionManager.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/module.modulemap","<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--generated-headers>","<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--phase0-copy-headers>","<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/armv7/AFURLSessionManager.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=AFNetworking","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/AFNetworking-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/AFNetworking-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/AFNetworking-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/AFNetworking-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/AFNetworking/AFNetworking-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/armv7/AFURLSessionManager.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/armv7/AFURLSessionManager.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/AFNetworking/AFNetworking/AFURLSessionManager.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/armv7/AFURLSessionManager.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/armv7/AFURLSessionManager.d"],"deps-style":"makefile","signature":"a000752955cbe9e741ef796ea6c1dbc4"}
"target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/armv7/UIActivityIndicatorView+AFNetworking.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/AFNetworking/UIKit+AFNetworking/UIActivityIndicatorView+AFNetworking.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/armv7/UIActivityIndicatorView+AFNetworking.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/AFNetworking/UIKit+AFNetworking/UIActivityIndicatorView+AFNetworking.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/AFNetworking/AFNetworking-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/AFNetworking/UIKit+AFNetworking/UIActivityIndicatorView+AFNetworking.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/module.modulemap","<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--generated-headers>","<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--phase0-copy-headers>","<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/armv7/UIActivityIndicatorView+AFNetworking.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=AFNetworking","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/AFNetworking-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/AFNetworking-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/AFNetworking-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/AFNetworking-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/AFNetworking/AFNetworking-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/armv7/UIActivityIndicatorView+AFNetworking.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/armv7/UIActivityIndicatorView+AFNetworking.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/AFNetworking/UIKit+AFNetworking/UIActivityIndicatorView+AFNetworking.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/armv7/UIActivityIndicatorView+AFNetworking.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/armv7/UIActivityIndicatorView+AFNetworking.d"],"deps-style":"makefile","signature":"749437e1c7fde576a19f267d3d3163e1"}
"target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/armv7/UIButton+AFNetworking.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/AFNetworking/UIKit+AFNetworking/UIButton+AFNetworking.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/armv7/UIButton+AFNetworking.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/AFNetworking/UIKit+AFNetworking/UIButton+AFNetworking.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/AFNetworking/AFNetworking-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/AFNetworking/UIKit+AFNetworking/UIButton+AFNetworking.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/module.modulemap","<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--generated-headers>","<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--phase0-copy-headers>","<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/armv7/UIButton+AFNetworking.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=AFNetworking","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/AFNetworking-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/AFNetworking-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/AFNetworking-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/AFNetworking-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/AFNetworking/AFNetworking-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/armv7/UIButton+AFNetworking.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/armv7/UIButton+AFNetworking.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/AFNetworking/UIKit+AFNetworking/UIButton+AFNetworking.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/armv7/UIButton+AFNetworking.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/armv7/UIButton+AFNetworking.d"],"deps-style":"makefile","signature":"54fd1e08d31dd4ba3ef179b38c2bd6e5"}
"target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/armv7/UIImageView+AFNetworking.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/AFNetworking/UIKit+AFNetworking/UIImageView+AFNetworking.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/armv7/UIImageView+AFNetworking.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/AFNetworking/UIKit+AFNetworking/UIImageView+AFNetworking.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/AFNetworking/AFNetworking-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/AFNetworking/UIKit+AFNetworking/UIImageView+AFNetworking.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/module.modulemap","<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--generated-headers>","<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--phase0-copy-headers>","<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/armv7/UIImageView+AFNetworking.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=AFNetworking","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/AFNetworking-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/AFNetworking-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/AFNetworking-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/AFNetworking-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/AFNetworking/AFNetworking-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/armv7/UIImageView+AFNetworking.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/armv7/UIImageView+AFNetworking.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/AFNetworking/UIKit+AFNetworking/UIImageView+AFNetworking.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/armv7/UIImageView+AFNetworking.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/armv7/UIImageView+AFNetworking.d"],"deps-style":"makefile","signature":"a70cfae42d8ee333ee78a3a117fd82f1"}
"target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/armv7/UIProgressView+AFNetworking.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/AFNetworking/UIKit+AFNetworking/UIProgressView+AFNetworking.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/armv7/UIProgressView+AFNetworking.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/AFNetworking/UIKit+AFNetworking/UIProgressView+AFNetworking.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/AFNetworking/AFNetworking-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/AFNetworking/UIKit+AFNetworking/UIProgressView+AFNetworking.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/module.modulemap","<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--generated-headers>","<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--phase0-copy-headers>","<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/armv7/UIProgressView+AFNetworking.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=AFNetworking","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/AFNetworking-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/AFNetworking-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/AFNetworking-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/AFNetworking-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/AFNetworking/AFNetworking-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/armv7/UIProgressView+AFNetworking.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/armv7/UIProgressView+AFNetworking.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/AFNetworking/UIKit+AFNetworking/UIProgressView+AFNetworking.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/armv7/UIProgressView+AFNetworking.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/armv7/UIProgressView+AFNetworking.d"],"deps-style":"makefile","signature":"822bde6c87bc014540275fc3f0e0fc70"}
"target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/armv7/UIRefreshControl+AFNetworking.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/AFNetworking/UIKit+AFNetworking/UIRefreshControl+AFNetworking.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/armv7/UIRefreshControl+AFNetworking.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/AFNetworking/UIKit+AFNetworking/UIRefreshControl+AFNetworking.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/AFNetworking/AFNetworking-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/AFNetworking/UIKit+AFNetworking/UIRefreshControl+AFNetworking.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/module.modulemap","<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--generated-headers>","<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--phase0-copy-headers>","<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/armv7/UIRefreshControl+AFNetworking.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=AFNetworking","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/AFNetworking-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/AFNetworking-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/AFNetworking-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/AFNetworking-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/AFNetworking/AFNetworking-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/armv7/UIRefreshControl+AFNetworking.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/armv7/UIRefreshControl+AFNetworking.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/AFNetworking/UIKit+AFNetworking/UIRefreshControl+AFNetworking.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/armv7/UIRefreshControl+AFNetworking.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/armv7/UIRefreshControl+AFNetworking.d"],"deps-style":"makefile","signature":"4260c3b903ac8ae44c457e0ca7798a0e"}
"target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/armv7/UIWebView+AFNetworking.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/AFNetworking/UIKit+AFNetworking/UIWebView+AFNetworking.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/armv7/UIWebView+AFNetworking.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/AFNetworking/UIKit+AFNetworking/UIWebView+AFNetworking.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/AFNetworking/AFNetworking-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/AFNetworking/UIKit+AFNetworking/UIWebView+AFNetworking.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/module.modulemap","<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--generated-headers>","<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--phase0-copy-headers>","<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/armv7/UIWebView+AFNetworking.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=AFNetworking","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/AFNetworking-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/AFNetworking-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/AFNetworking-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/AFNetworking-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/AFNetworking/AFNetworking-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/armv7/UIWebView+AFNetworking.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/armv7/UIWebView+AFNetworking.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/AFNetworking/UIKit+AFNetworking/UIWebView+AFNetworking.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/armv7/UIWebView+AFNetworking.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/armv7/UIWebView+AFNetworking.d"],"deps-style":"makefile","signature":"c29d94e1097ac9aa9ff7f320bfa8e72a"}
"target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/AFNetworking/AFNetworking/AFCompatibilityMacros.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking/AFNetworking.framework/Headers/AFCompatibilityMacros.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/AFNetworking/AFNetworking/AFCompatibilityMacros.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking/AFNetworking.framework/Headers/AFCompatibilityMacros.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/AFNetworking/AFNetworking/AFCompatibilityMacros.h/","<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--HeadermapTaskProducer>","<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking/AFNetworking.framework/Headers/AFCompatibilityMacros.h"]}
"target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/AFNetworking/AFNetworking/AFHTTPSessionManager.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking/AFNetworking.framework/Headers/AFHTTPSessionManager.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/AFNetworking/AFNetworking/AFHTTPSessionManager.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking/AFNetworking.framework/Headers/AFHTTPSessionManager.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/AFNetworking/AFNetworking/AFHTTPSessionManager.h/","<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--HeadermapTaskProducer>","<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking/AFNetworking.framework/Headers/AFHTTPSessionManager.h"]}
"target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/AFNetworking/AFNetworking/AFNetworkReachabilityManager.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking/AFNetworking.framework/Headers/AFNetworkReachabilityManager.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/AFNetworking/AFNetworking/AFNetworkReachabilityManager.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking/AFNetworking.framework/Headers/AFNetworkReachabilityManager.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/AFNetworking/AFNetworking/AFNetworkReachabilityManager.h/","<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--HeadermapTaskProducer>","<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking/AFNetworking.framework/Headers/AFNetworkReachabilityManager.h"]}
"target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/AFNetworking/AFNetworking/AFNetworking.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking/AFNetworking.framework/Headers/AFNetworking.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/AFNetworking/AFNetworking/AFNetworking.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking/AFNetworking.framework/Headers/AFNetworking.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/AFNetworking/AFNetworking/AFNetworking.h/","<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--HeadermapTaskProducer>","<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking/AFNetworking.framework/Headers/AFNetworking.h"]}
"target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/AFNetworking/AFNetworking/AFSecurityPolicy.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking/AFNetworking.framework/Headers/AFSecurityPolicy.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/AFNetworking/AFNetworking/AFSecurityPolicy.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking/AFNetworking.framework/Headers/AFSecurityPolicy.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/AFNetworking/AFNetworking/AFSecurityPolicy.h/","<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--HeadermapTaskProducer>","<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking/AFNetworking.framework/Headers/AFSecurityPolicy.h"]}
"target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/AFNetworking/AFNetworking/AFURLRequestSerialization.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking/AFNetworking.framework/Headers/AFURLRequestSerialization.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/AFNetworking/AFNetworking/AFURLRequestSerialization.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking/AFNetworking.framework/Headers/AFURLRequestSerialization.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/AFNetworking/AFNetworking/AFURLRequestSerialization.h/","<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--HeadermapTaskProducer>","<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking/AFNetworking.framework/Headers/AFURLRequestSerialization.h"]}
"target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/AFNetworking/AFNetworking/AFURLResponseSerialization.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking/AFNetworking.framework/Headers/AFURLResponseSerialization.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/AFNetworking/AFNetworking/AFURLResponseSerialization.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking/AFNetworking.framework/Headers/AFURLResponseSerialization.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/AFNetworking/AFNetworking/AFURLResponseSerialization.h/","<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--HeadermapTaskProducer>","<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking/AFNetworking.framework/Headers/AFURLResponseSerialization.h"]}
"target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/AFNetworking/AFNetworking/AFURLSessionManager.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking/AFNetworking.framework/Headers/AFURLSessionManager.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/AFNetworking/AFNetworking/AFURLSessionManager.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking/AFNetworking.framework/Headers/AFURLSessionManager.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/AFNetworking/AFNetworking/AFURLSessionManager.h/","<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--HeadermapTaskProducer>","<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking/AFNetworking.framework/Headers/AFURLSessionManager.h"]}
"target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/AFNetworking/UIKit+AFNetworking/AFAutoPurgingImageCache.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking/AFNetworking.framework/Headers/AFAutoPurgingImageCache.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/AFNetworking/UIKit+AFNetworking/AFAutoPurgingImageCache.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking/AFNetworking.framework/Headers/AFAutoPurgingImageCache.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/AFNetworking/UIKit+AFNetworking/AFAutoPurgingImageCache.h/","<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--HeadermapTaskProducer>","<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking/AFNetworking.framework/Headers/AFAutoPurgingImageCache.h"]}
"target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/AFNetworking/UIKit+AFNetworking/AFImageDownloader.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking/AFNetworking.framework/Headers/AFImageDownloader.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/AFNetworking/UIKit+AFNetworking/AFImageDownloader.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking/AFNetworking.framework/Headers/AFImageDownloader.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/AFNetworking/UIKit+AFNetworking/AFImageDownloader.h/","<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--HeadermapTaskProducer>","<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking/AFNetworking.framework/Headers/AFImageDownloader.h"]}
"target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/AFNetworking/UIKit+AFNetworking/AFNetworkActivityIndicatorManager.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking/AFNetworking.framework/Headers/AFNetworkActivityIndicatorManager.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/AFNetworking/UIKit+AFNetworking/AFNetworkActivityIndicatorManager.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking/AFNetworking.framework/Headers/AFNetworkActivityIndicatorManager.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/AFNetworking/UIKit+AFNetworking/AFNetworkActivityIndicatorManager.h/","<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--HeadermapTaskProducer>","<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking/AFNetworking.framework/Headers/AFNetworkActivityIndicatorManager.h"]}
"target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/AFNetworking/UIKit+AFNetworking/UIActivityIndicatorView+AFNetworking.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking/AFNetworking.framework/Headers/UIActivityIndicatorView+AFNetworking.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/AFNetworking/UIKit+AFNetworking/UIActivityIndicatorView+AFNetworking.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking/AFNetworking.framework/Headers/UIActivityIndicatorView+AFNetworking.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/AFNetworking/UIKit+AFNetworking/UIActivityIndicatorView+AFNetworking.h/","<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--HeadermapTaskProducer>","<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking/AFNetworking.framework/Headers/UIActivityIndicatorView+AFNetworking.h"]}
"target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/AFNetworking/UIKit+AFNetworking/UIButton+AFNetworking.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking/AFNetworking.framework/Headers/UIButton+AFNetworking.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/AFNetworking/UIKit+AFNetworking/UIButton+AFNetworking.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking/AFNetworking.framework/Headers/UIButton+AFNetworking.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/AFNetworking/UIKit+AFNetworking/UIButton+AFNetworking.h/","<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--HeadermapTaskProducer>","<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking/AFNetworking.framework/Headers/UIButton+AFNetworking.h"]}
"target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/AFNetworking/UIKit+AFNetworking/UIImage+AFNetworking.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking/AFNetworking.framework/Headers/UIImage+AFNetworking.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/AFNetworking/UIKit+AFNetworking/UIImage+AFNetworking.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking/AFNetworking.framework/Headers/UIImage+AFNetworking.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/AFNetworking/UIKit+AFNetworking/UIImage+AFNetworking.h/","<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--HeadermapTaskProducer>","<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking/AFNetworking.framework/Headers/UIImage+AFNetworking.h"]}
"target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/AFNetworking/UIKit+AFNetworking/UIImageView+AFNetworking.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking/AFNetworking.framework/Headers/UIImageView+AFNetworking.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/AFNetworking/UIKit+AFNetworking/UIImageView+AFNetworking.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking/AFNetworking.framework/Headers/UIImageView+AFNetworking.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/AFNetworking/UIKit+AFNetworking/UIImageView+AFNetworking.h/","<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--HeadermapTaskProducer>","<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking/AFNetworking.framework/Headers/UIImageView+AFNetworking.h"]}
"target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/AFNetworking/UIKit+AFNetworking/UIKit+AFNetworking.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking/AFNetworking.framework/Headers/UIKit+AFNetworking.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/AFNetworking/UIKit+AFNetworking/UIKit+AFNetworking.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking/AFNetworking.framework/Headers/UIKit+AFNetworking.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/AFNetworking/UIKit+AFNetworking/UIKit+AFNetworking.h/","<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--HeadermapTaskProducer>","<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking/AFNetworking.framework/Headers/UIKit+AFNetworking.h"]}
"target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/AFNetworking/UIKit+AFNetworking/UIProgressView+AFNetworking.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking/AFNetworking.framework/Headers/UIProgressView+AFNetworking.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/AFNetworking/UIKit+AFNetworking/UIProgressView+AFNetworking.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking/AFNetworking.framework/Headers/UIProgressView+AFNetworking.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/AFNetworking/UIKit+AFNetworking/UIProgressView+AFNetworking.h/","<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--HeadermapTaskProducer>","<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking/AFNetworking.framework/Headers/UIProgressView+AFNetworking.h"]}
"target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/AFNetworking/UIKit+AFNetworking/UIRefreshControl+AFNetworking.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking/AFNetworking.framework/Headers/UIRefreshControl+AFNetworking.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/AFNetworking/UIKit+AFNetworking/UIRefreshControl+AFNetworking.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking/AFNetworking.framework/Headers/UIRefreshControl+AFNetworking.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/AFNetworking/UIKit+AFNetworking/UIRefreshControl+AFNetworking.h/","<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--HeadermapTaskProducer>","<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking/AFNetworking.framework/Headers/UIRefreshControl+AFNetworking.h"]}
"target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/AFNetworking/UIKit+AFNetworking/UIWebView+AFNetworking.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking/AFNetworking.framework/Headers/UIWebView+AFNetworking.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/AFNetworking/UIKit+AFNetworking/UIWebView+AFNetworking.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking/AFNetworking.framework/Headers/UIWebView+AFNetworking.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/AFNetworking/UIKit+AFNetworking/UIWebView+AFNetworking.h/","<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--HeadermapTaskProducer>","<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking/AFNetworking.framework/Headers/UIWebView+AFNetworking.h"]}
"target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/AFNetworking/AFNetworking-umbrella.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking/AFNetworking.framework/Headers/AFNetworking-umbrella.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/AFNetworking/AFNetworking-umbrella.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking/AFNetworking.framework/Headers/AFNetworking-umbrella.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/AFNetworking/AFNetworking-umbrella.h/","<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--HeadermapTaskProducer>","<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking/AFNetworking.framework/Headers/AFNetworking-umbrella.h"]}
"target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1-:Debug:CreateUniversalBinary /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking/AFNetworking.framework/AFNetworking normal armv7 arm64": {"tool":"shell","description":"CreateUniversalBinary /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking/AFNetworking.framework/AFNetworking normal armv7 arm64","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/armv7/Binary/AFNetworking","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/arm64/Binary/AFNetworking","<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--phase0-copy-headers>","<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking/AFNetworking.framework/AFNetworking","<Linked Binary /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking/AFNetworking.framework/AFNetworking>"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/lipo","-create","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/armv7/Binary/AFNetworking","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/arm64/Binary/AFNetworking","-output","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking/AFNetworking.framework/AFNetworking"],"env":{},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","signature":"2f1adc8781bdb015b526928f8e156925"}
"target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1-:Debug:Ditto /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/module.modulemap /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking/AFNetworking.framework/Modules/module.modulemap": {"tool":"file-copy","description":"Ditto /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/module.modulemap /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking/AFNetworking.framework/Modules/module.modulemap","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/module.modulemap/","<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--HeadermapTaskProducer>","<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking/AFNetworking.framework/Modules/module.modulemap"]}
"target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1-:Debug:Ld /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/arm64/Binary/AFNetworking normal arm64": {"tool":"shell","description":"Ld /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/arm64/Binary/AFNetworking normal arm64","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/arm64/AFAutoPurgingImageCache.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/arm64/AFHTTPSessionManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/arm64/AFImageDownloader.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/arm64/AFNetworkActivityIndicatorManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/arm64/AFNetworking-dummy.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/arm64/AFNetworkReachabilityManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/arm64/AFSecurityPolicy.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/arm64/AFURLRequestSerialization.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/arm64/AFURLResponseSerialization.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/arm64/AFURLSessionManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/arm64/UIActivityIndicatorView+AFNetworking.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/arm64/UIButton+AFNetworking.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/arm64/UIImageView+AFNetworking.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/arm64/UIProgressView+AFNetworking.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/arm64/UIRefreshControl+AFNetworking.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/arm64/UIWebView+AFNetworking.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/arm64/AFNetworking_vers.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/arm64/AFNetworking.LinkFileList","<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--phase0-copy-headers>","<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/arm64/Binary/AFNetworking"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-target","arm64-apple-ios8.0","-dynamiclib","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-L/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking","-filelist","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/arm64/AFNetworking.LinkFileList","-install_name","@rpath/AFNetworking.framework/AFNetworking","-Xlinker","-rpath","-Xlinker","@executable_path/Frameworks","-Xlinker","-rpath","-Xlinker","@loader_path/Frameworks","-dead_strip","-Xlinker","-object_path_lto","-Xlinker","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/arm64/AFNetworking_lto.o","-Xlinker","-export_dynamic","-Xlinker","-no_deduplicate","-fembed-bitcode-marker","-fobjc-arc","-fobjc-link-runtime","-framework","CoreGraphics","-framework","MobileCoreServices","-framework","Security","-framework","SystemConfiguration","-framework","CoreGraphics","-framework","Foundation","-framework","MobileCoreServices","-framework","Security","-framework","SystemConfiguration","-compatibility_version","1","-current_version","1","-Xlinker","-dependency_info","-Xlinker","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/arm64/AFNetworking_dependency_info.dat","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/arm64/Binary/AFNetworking"],"env":{},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/arm64/AFNetworking_dependency_info.dat"],"deps-style":"dependency-info","signature":"66f9bf32ea35c30abcea3f19c4202ebf"}
"target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1-:Debug:Ld /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/armv7/Binary/AFNetworking normal armv7": {"tool":"shell","description":"Ld /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/armv7/Binary/AFNetworking normal armv7","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/armv7/AFAutoPurgingImageCache.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/armv7/AFHTTPSessionManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/armv7/AFImageDownloader.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/armv7/AFNetworkActivityIndicatorManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/armv7/AFNetworking-dummy.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/armv7/AFNetworkReachabilityManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/armv7/AFSecurityPolicy.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/armv7/AFURLRequestSerialization.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/armv7/AFURLResponseSerialization.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/armv7/AFURLSessionManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/armv7/UIActivityIndicatorView+AFNetworking.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/armv7/UIButton+AFNetworking.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/armv7/UIImageView+AFNetworking.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/armv7/UIProgressView+AFNetworking.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/armv7/UIRefreshControl+AFNetworking.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/armv7/UIWebView+AFNetworking.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/armv7/AFNetworking_vers.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/armv7/AFNetworking.LinkFileList","<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--phase0-copy-headers>","<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/armv7/Binary/AFNetworking"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-target","armv7-apple-ios8.0","-dynamiclib","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-L/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking","-filelist","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/armv7/AFNetworking.LinkFileList","-install_name","@rpath/AFNetworking.framework/AFNetworking","-Xlinker","-rpath","-Xlinker","@executable_path/Frameworks","-Xlinker","-rpath","-Xlinker","@loader_path/Frameworks","-dead_strip","-Xlinker","-object_path_lto","-Xlinker","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/armv7/AFNetworking_lto.o","-Xlinker","-export_dynamic","-Xlinker","-no_deduplicate","-fembed-bitcode-marker","-fobjc-arc","-fobjc-link-runtime","-framework","CoreGraphics","-framework","MobileCoreServices","-framework","Security","-framework","SystemConfiguration","-framework","CoreGraphics","-framework","Foundation","-framework","MobileCoreServices","-framework","Security","-framework","SystemConfiguration","-compatibility_version","1","-current_version","1","-Xlinker","-dependency_info","-Xlinker","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/armv7/AFNetworking_dependency_info.dat","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/armv7/Binary/AFNetworking"],"env":{},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/armv7/AFNetworking_dependency_info.dat"],"deps-style":"dependency-info","signature":"ba6e5220f33d7c967fdec22c21bc2085"}
"target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1-:Debug:MkDir /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking/AFNetworking.framework": {"tool":"mkdir","description":"MkDir /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking/AFNetworking.framework","inputs":["<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--start>","<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking/AFNetworking.framework","<MkDir /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking/AFNetworking.framework>"]}
"target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1-:Debug:MkDir /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking/AFNetworking.framework/Headers": {"tool":"mkdir","description":"MkDir /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking/AFNetworking.framework/Headers","inputs":["<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--start>","<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking/AFNetworking.framework/Headers","<MkDir /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking/AFNetworking.framework/Headers>"]}
"target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1-:Debug:ProcessInfoPlistFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking/AFNetworking.framework/Info.plist /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/AFNetworking/AFNetworking-Info.plist": {"tool":"info-plist-processor","description":"ProcessInfoPlistFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking/AFNetworking.framework/Info.plist /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/AFNetworking/AFNetworking-Info.plist","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/AFNetworking/AFNetworking-Info.plist","<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--HeadermapTaskProducer>","<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking/AFNetworking.framework/Info.plist"]}
"target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1-:Debug:Touch /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking/AFNetworking.framework": {"tool":"shell","description":"Touch /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking/AFNetworking.framework","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking/AFNetworking.framework","<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--Barrier-RegisterExecutionPolicyException>","<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--entry>"],"outputs":["<Touch /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking/AFNetworking.framework>"],"args":["/usr/bin/touch","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking/AFNetworking.framework"],"env":{},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","signature":"d7abfe974646b07830949b45d7da36ce"}
"target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/AFNetworking-all-non-framework-target-headers.hmap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/AFNetworking-all-non-framework-target-headers.hmap","inputs":["<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--GeneratedFilesTaskProducer>","<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/AFNetworking-all-non-framework-target-headers.hmap"]}
"target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/AFNetworking-all-target-headers.hmap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/AFNetworking-all-target-headers.hmap","inputs":["<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--GeneratedFilesTaskProducer>","<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/AFNetworking-all-target-headers.hmap"]}
"target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/AFNetworking-generated-files.hmap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/AFNetworking-generated-files.hmap","inputs":["<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--GeneratedFilesTaskProducer>","<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/AFNetworking-generated-files.hmap"]}
"target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/AFNetworking-own-target-headers.hmap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/AFNetworking-own-target-headers.hmap","inputs":["<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--GeneratedFilesTaskProducer>","<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/AFNetworking-own-target-headers.hmap"]}
"target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/AFNetworking-project-headers.hmap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/AFNetworking-project-headers.hmap","inputs":["<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--GeneratedFilesTaskProducer>","<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/AFNetworking-project-headers.hmap"]}
"target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/AFNetworking.hmap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/AFNetworking.hmap","inputs":["<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--GeneratedFilesTaskProducer>","<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/AFNetworking.hmap"]}
"target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/DerivedSources/AFNetworking_vers.c": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/DerivedSources/AFNetworking_vers.c","inputs":["<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--phase0-copy-headers>","<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/DerivedSources/AFNetworking_vers.c"]}
"target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/arm64/AFNetworking.LinkFileList": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/arm64/AFNetworking.LinkFileList","inputs":["<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--phase0-copy-headers>","<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/arm64/AFNetworking.LinkFileList"]}
"target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/armv7/AFNetworking.LinkFileList": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/armv7/AFNetworking.LinkFileList","inputs":["<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--phase0-copy-headers>","<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/Objects-normal/armv7/AFNetworking.LinkFileList"]}
"target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/all-product-headers.yaml": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/all-product-headers.yaml","inputs":["<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--GeneratedFilesTaskProducer>","<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/all-product-headers.yaml"]}
"target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/module.modulemap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/module.modulemap","inputs":["<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--HeadermapTaskProducer>","<target-AFNetworking-285b96a559574e49fe0e1a40c03a5a8e53a735b3dbcb86fa532787dbbe741ba1--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/AFNetworking.build/module.modulemap"]}
"target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/BaseModel.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/ARC/BaseModel/BaseModel.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/BaseModel.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/ARC/BaseModel/BaseModel.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveBaseKit/CNLiveBaseKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/ARC/BaseModel/BaseModel.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/module.modulemap","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--generated-headers>","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--phase0-copy-headers>","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/BaseModel.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=CNLiveBaseKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/CNLiveBaseKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/CNLiveBaseKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/CNLiveBaseKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/CNLiveBaseKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveTripartiteManagement","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveBaseKit/CNLiveBaseKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/BaseModel.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/BaseModel.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/ARC/BaseModel/BaseModel.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/BaseModel.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/BaseModel.d"],"deps-style":"makefile","signature":"c09f9c1676a6a228374cca83aad3d856"}
"target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/CNFontAndRatioTool.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/ARC/Utils/UIFont/CNFontAndRatioTool.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/CNFontAndRatioTool.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/ARC/Utils/UIFont/CNFontAndRatioTool.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveBaseKit/CNLiveBaseKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/ARC/Utils/UIFont/CNFontAndRatioTool.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/module.modulemap","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--generated-headers>","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--phase0-copy-headers>","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/CNFontAndRatioTool.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=CNLiveBaseKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/CNLiveBaseKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/CNLiveBaseKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/CNLiveBaseKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/CNLiveBaseKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveTripartiteManagement","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveBaseKit/CNLiveBaseKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/CNFontAndRatioTool.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/CNFontAndRatioTool.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/ARC/Utils/UIFont/CNFontAndRatioTool.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/CNFontAndRatioTool.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/CNFontAndRatioTool.d"],"deps-style":"makefile","signature":"5c7d9656116172166e9558dbc4ad9c70"}
"target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/CNLiveBaseKit-dummy.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveBaseKit/CNLiveBaseKit-dummy.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/CNLiveBaseKit-dummy.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveBaseKit/CNLiveBaseKit-dummy.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveBaseKit/CNLiveBaseKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveBaseKit/CNLiveBaseKit-dummy.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/module.modulemap","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--generated-headers>","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--phase0-copy-headers>","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/CNLiveBaseKit-dummy.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=CNLiveBaseKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/CNLiveBaseKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/CNLiveBaseKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/CNLiveBaseKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/CNLiveBaseKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveTripartiteManagement","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveBaseKit/CNLiveBaseKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/CNLiveBaseKit-dummy.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/CNLiveBaseKit-dummy.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveBaseKit/CNLiveBaseKit-dummy.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/CNLiveBaseKit-dummy.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/CNLiveBaseKit-dummy.d"],"deps-style":"makefile","signature":"180dbf5b567bbd0896945f833e34fe43"}
"target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/CNLiveBaseKit_vers.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/DerivedSources/CNLiveBaseKit_vers.c normal arm64 c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/CNLiveBaseKit_vers.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/DerivedSources/CNLiveBaseKit_vers.c normal arm64 c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/DerivedSources/CNLiveBaseKit_vers.c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/module.modulemap","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--generated-headers>","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--phase0-copy-headers>","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/CNLiveBaseKit_vers.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c","-target","arm64-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=CNLiveBaseKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Werror=deprecated-objc-isa-usage","-Werror=objc-root-class","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/CNLiveBaseKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/CNLiveBaseKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/CNLiveBaseKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/CNLiveBaseKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveTripartiteManagement","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/CNLiveBaseKit_vers.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/CNLiveBaseKit_vers.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/DerivedSources/CNLiveBaseKit_vers.c","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/CNLiveBaseKit_vers.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/CNLiveBaseKit_vers.d"],"deps-style":"makefile","signature":"d94ed3be31dd2090ab2c958e880331b4"}
"target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/GTMBase64.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/ARC/Utils/GTMBase64/GTMBase64.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/GTMBase64.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/ARC/Utils/GTMBase64/GTMBase64.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveBaseKit/CNLiveBaseKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/ARC/Utils/GTMBase64/GTMBase64.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/module.modulemap","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--generated-headers>","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--phase0-copy-headers>","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/GTMBase64.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=CNLiveBaseKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/CNLiveBaseKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/CNLiveBaseKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/CNLiveBaseKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/CNLiveBaseKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveTripartiteManagement","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveBaseKit/CNLiveBaseKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/GTMBase64.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/GTMBase64.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/ARC/Utils/GTMBase64/GTMBase64.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/GTMBase64.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/GTMBase64.d"],"deps-style":"makefile","signature":"95bd219fde035d2b8e91fc90bba6502b"}
"target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/IOSDeviceConfig.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/ARC/IOSDeviceSetting/IOSDeviceConfig.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/IOSDeviceConfig.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/ARC/IOSDeviceSetting/IOSDeviceConfig.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveBaseKit/CNLiveBaseKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/ARC/IOSDeviceSetting/IOSDeviceConfig.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/module.modulemap","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--generated-headers>","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--phase0-copy-headers>","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/IOSDeviceConfig.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=CNLiveBaseKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/CNLiveBaseKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/CNLiveBaseKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/CNLiveBaseKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/CNLiveBaseKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveTripartiteManagement","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveBaseKit/CNLiveBaseKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/IOSDeviceConfig.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/IOSDeviceConfig.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/ARC/IOSDeviceSetting/IOSDeviceConfig.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/IOSDeviceConfig.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/IOSDeviceConfig.d"],"deps-style":"makefile","signature":"7f2153da10f6cbd835cd05841ccf958a"}
"target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/JSONKit.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/MRC/JSON/JSONKit.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/JSONKit.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/MRC/JSON/JSONKit.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveBaseKit/CNLiveBaseKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/MRC/JSON/JSONKit.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/module.modulemap","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--generated-headers>","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--phase0-copy-headers>","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/JSONKit.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=CNLiveBaseKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/CNLiveBaseKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/CNLiveBaseKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/CNLiveBaseKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/CNLiveBaseKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveTripartiteManagement","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-fno-objc-arc","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveBaseKit/CNLiveBaseKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/JSONKit.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/JSONKit.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/MRC/JSON/JSONKit.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/JSONKit.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/JSONKit.d"],"deps-style":"makefile","signature":"cce9bfd77ad7e6011c19e2e50f5424ea"}
"target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/NSMutableDictionary+Json.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/MRC/JSON/NSMutableDictionary+Json.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/NSMutableDictionary+Json.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/MRC/JSON/NSMutableDictionary+Json.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveBaseKit/CNLiveBaseKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/MRC/JSON/NSMutableDictionary+Json.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/module.modulemap","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--generated-headers>","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--phase0-copy-headers>","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/NSMutableDictionary+Json.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=CNLiveBaseKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/CNLiveBaseKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/CNLiveBaseKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/CNLiveBaseKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/CNLiveBaseKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveTripartiteManagement","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-fno-objc-arc","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveBaseKit/CNLiveBaseKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/NSMutableDictionary+Json.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/NSMutableDictionary+Json.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/MRC/JSON/NSMutableDictionary+Json.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/NSMutableDictionary+Json.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/NSMutableDictionary+Json.d"],"deps-style":"makefile","signature":"76c0ddd7f6180ee68c68b2394dbcd1cd"}
"target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/NSObject+Json.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/MRC/JSON/NSObject+Json.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/NSObject+Json.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/MRC/JSON/NSObject+Json.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveBaseKit/CNLiveBaseKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/MRC/JSON/NSObject+Json.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/module.modulemap","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--generated-headers>","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--phase0-copy-headers>","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/NSObject+Json.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=CNLiveBaseKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/CNLiveBaseKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/CNLiveBaseKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/CNLiveBaseKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/CNLiveBaseKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveTripartiteManagement","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-fno-objc-arc","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveBaseKit/CNLiveBaseKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/NSObject+Json.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/NSObject+Json.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/MRC/JSON/NSObject+Json.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/NSObject+Json.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/NSObject+Json.d"],"deps-style":"makefile","signature":"d3bb98616dc68ac73512063553986194"}
"target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/NSString+AES.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/ARC/Utils/Categorys/NSString+AES.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/NSString+AES.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/ARC/Utils/Categorys/NSString+AES.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveBaseKit/CNLiveBaseKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/ARC/Utils/Categorys/NSString+AES.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/module.modulemap","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--generated-headers>","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--phase0-copy-headers>","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/NSString+AES.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=CNLiveBaseKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/CNLiveBaseKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/CNLiveBaseKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/CNLiveBaseKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/CNLiveBaseKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveTripartiteManagement","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveBaseKit/CNLiveBaseKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/NSString+AES.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/NSString+AES.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/ARC/Utils/Categorys/NSString+AES.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/NSString+AES.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/NSString+AES.d"],"deps-style":"makefile","signature":"d9f39a37d5c614ae92fa45824976ebd5"}
"target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/NSString+CNLiveExtension.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/ARC/Utils/Categorys/NSString+CNLiveExtension.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/NSString+CNLiveExtension.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/ARC/Utils/Categorys/NSString+CNLiveExtension.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveBaseKit/CNLiveBaseKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/ARC/Utils/Categorys/NSString+CNLiveExtension.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/module.modulemap","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--generated-headers>","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--phase0-copy-headers>","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/NSString+CNLiveExtension.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=CNLiveBaseKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/CNLiveBaseKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/CNLiveBaseKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/CNLiveBaseKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/CNLiveBaseKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveTripartiteManagement","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveBaseKit/CNLiveBaseKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/NSString+CNLiveExtension.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/NSString+CNLiveExtension.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/ARC/Utils/Categorys/NSString+CNLiveExtension.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/NSString+CNLiveExtension.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/NSString+CNLiveExtension.d"],"deps-style":"makefile","signature":"5d5d5763d4f1695c6a8ec20ff1404450"}
"target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/PathUtility.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/ARC/Utils/Path/PathUtility.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/PathUtility.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/ARC/Utils/Path/PathUtility.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveBaseKit/CNLiveBaseKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/ARC/Utils/Path/PathUtility.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/module.modulemap","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--generated-headers>","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--phase0-copy-headers>","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/PathUtility.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=CNLiveBaseKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/CNLiveBaseKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/CNLiveBaseKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/CNLiveBaseKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/CNLiveBaseKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveTripartiteManagement","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveBaseKit/CNLiveBaseKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/PathUtility.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/PathUtility.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/ARC/Utils/Path/PathUtility.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/PathUtility.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/PathUtility.d"],"deps-style":"makefile","signature":"4d29c454d8159304188d45f94f93206e"}
"target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/UIButton+CNCreateButton.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/ARC/Utils/Categorys/UIButton+CNCreateButton.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/UIButton+CNCreateButton.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/ARC/Utils/Categorys/UIButton+CNCreateButton.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveBaseKit/CNLiveBaseKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/ARC/Utils/Categorys/UIButton+CNCreateButton.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/module.modulemap","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--generated-headers>","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--phase0-copy-headers>","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/UIButton+CNCreateButton.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=CNLiveBaseKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/CNLiveBaseKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/CNLiveBaseKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/CNLiveBaseKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/CNLiveBaseKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveTripartiteManagement","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveBaseKit/CNLiveBaseKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/UIButton+CNCreateButton.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/UIButton+CNCreateButton.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/ARC/Utils/Categorys/UIButton+CNCreateButton.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/UIButton+CNCreateButton.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/UIButton+CNCreateButton.d"],"deps-style":"makefile","signature":"c304ba3368ac6c09ea365769d4818e7a"}
"target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/UIColor+MLPFlatColors.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/ARC/Utils/Color/UIColor+MLPFlatColors.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/UIColor+MLPFlatColors.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/ARC/Utils/Color/UIColor+MLPFlatColors.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveBaseKit/CNLiveBaseKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/ARC/Utils/Color/UIColor+MLPFlatColors.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/module.modulemap","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--generated-headers>","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--phase0-copy-headers>","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/UIColor+MLPFlatColors.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=CNLiveBaseKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/CNLiveBaseKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/CNLiveBaseKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/CNLiveBaseKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/CNLiveBaseKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveTripartiteManagement","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveBaseKit/CNLiveBaseKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/UIColor+MLPFlatColors.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/UIColor+MLPFlatColors.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/ARC/Utils/Color/UIColor+MLPFlatColors.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/UIColor+MLPFlatColors.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/UIColor+MLPFlatColors.d"],"deps-style":"makefile","signature":"52e0f6fbab986014828047d41638c7ca"}
"target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/UIFont+CNLiveExtension.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/ARC/Utils/UIFont/UIFont+CNLiveExtension.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/UIFont+CNLiveExtension.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/ARC/Utils/UIFont/UIFont+CNLiveExtension.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveBaseKit/CNLiveBaseKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/ARC/Utils/UIFont/UIFont+CNLiveExtension.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/module.modulemap","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--generated-headers>","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--phase0-copy-headers>","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/UIFont+CNLiveExtension.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=CNLiveBaseKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/CNLiveBaseKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/CNLiveBaseKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/CNLiveBaseKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/CNLiveBaseKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveTripartiteManagement","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveBaseKit/CNLiveBaseKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/UIFont+CNLiveExtension.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/UIFont+CNLiveExtension.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/ARC/Utils/UIFont/UIFont+CNLiveExtension.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/UIFont+CNLiveExtension.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/UIFont+CNLiveExtension.d"],"deps-style":"makefile","signature":"668153de658d195d9e0a6555d88cad54"}
"target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/UIFont+TLChat.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/ARC/Utils/Categorys/UIFont+TLChat.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/UIFont+TLChat.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/ARC/Utils/Categorys/UIFont+TLChat.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveBaseKit/CNLiveBaseKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/ARC/Utils/Categorys/UIFont+TLChat.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/module.modulemap","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--generated-headers>","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--phase0-copy-headers>","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/UIFont+TLChat.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=CNLiveBaseKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/CNLiveBaseKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/CNLiveBaseKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/CNLiveBaseKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/CNLiveBaseKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveTripartiteManagement","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveBaseKit/CNLiveBaseKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/UIFont+TLChat.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/UIFont+TLChat.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/ARC/Utils/Categorys/UIFont+TLChat.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/UIFont+TLChat.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/UIFont+TLChat.d"],"deps-style":"makefile","signature":"c7d429f273d70d7df4707ab8e1c43042"}
"target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/UIImage+CNLiveBaseExtension.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/ARC/Utils/Categorys/UIImage+CNLiveBaseExtension.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/UIImage+CNLiveBaseExtension.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/ARC/Utils/Categorys/UIImage+CNLiveBaseExtension.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveBaseKit/CNLiveBaseKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/ARC/Utils/Categorys/UIImage+CNLiveBaseExtension.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/module.modulemap","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--generated-headers>","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--phase0-copy-headers>","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/UIImage+CNLiveBaseExtension.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=CNLiveBaseKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/CNLiveBaseKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/CNLiveBaseKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/CNLiveBaseKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/CNLiveBaseKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveTripartiteManagement","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveBaseKit/CNLiveBaseKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/UIImage+CNLiveBaseExtension.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/UIImage+CNLiveBaseExtension.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/ARC/Utils/Categorys/UIImage+CNLiveBaseExtension.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/UIImage+CNLiveBaseExtension.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/UIImage+CNLiveBaseExtension.d"],"deps-style":"makefile","signature":"3705fd6669279ae11b109c151bb3b707"}
"target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/UIView+CNAlertView.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/ARC/Utils/Categorys/UIView+CNAlertView.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/UIView+CNAlertView.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/ARC/Utils/Categorys/UIView+CNAlertView.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveBaseKit/CNLiveBaseKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/ARC/Utils/Categorys/UIView+CNAlertView.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/module.modulemap","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--generated-headers>","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--phase0-copy-headers>","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/UIView+CNAlertView.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=CNLiveBaseKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/CNLiveBaseKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/CNLiveBaseKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/CNLiveBaseKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/CNLiveBaseKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveTripartiteManagement","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveBaseKit/CNLiveBaseKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/UIView+CNAlertView.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/UIView+CNAlertView.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/ARC/Utils/Categorys/UIView+CNAlertView.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/UIView+CNAlertView.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/UIView+CNAlertView.d"],"deps-style":"makefile","signature":"ae625dda6967cc903ae67d8af90d2ff9"}
"target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/UIView+Extension.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/ARC/Utils/Categorys/UIView+Extension.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/UIView+Extension.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/ARC/Utils/Categorys/UIView+Extension.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveBaseKit/CNLiveBaseKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/ARC/Utils/Categorys/UIView+Extension.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/module.modulemap","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--generated-headers>","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--phase0-copy-headers>","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/UIView+Extension.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=CNLiveBaseKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/CNLiveBaseKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/CNLiveBaseKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/CNLiveBaseKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/CNLiveBaseKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveTripartiteManagement","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveBaseKit/CNLiveBaseKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/UIView+Extension.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/UIView+Extension.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/ARC/Utils/Categorys/UIView+Extension.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/UIView+Extension.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/UIView+Extension.d"],"deps-style":"makefile","signature":"09e891d5627251b9acf1d19175cee2a5"}
"target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/BaseModel.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/ARC/BaseModel/BaseModel.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/BaseModel.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/ARC/BaseModel/BaseModel.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveBaseKit/CNLiveBaseKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/ARC/BaseModel/BaseModel.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/module.modulemap","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--generated-headers>","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--phase0-copy-headers>","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/BaseModel.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=CNLiveBaseKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/CNLiveBaseKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/CNLiveBaseKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/CNLiveBaseKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/CNLiveBaseKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveTripartiteManagement","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveBaseKit/CNLiveBaseKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/BaseModel.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/BaseModel.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/ARC/BaseModel/BaseModel.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/BaseModel.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/BaseModel.d"],"deps-style":"makefile","signature":"fa8edd4e502a5ad5c91c041d9cb106b2"}
"target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/CNFontAndRatioTool.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/ARC/Utils/UIFont/CNFontAndRatioTool.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/CNFontAndRatioTool.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/ARC/Utils/UIFont/CNFontAndRatioTool.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveBaseKit/CNLiveBaseKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/ARC/Utils/UIFont/CNFontAndRatioTool.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/module.modulemap","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--generated-headers>","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--phase0-copy-headers>","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/CNFontAndRatioTool.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=CNLiveBaseKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/CNLiveBaseKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/CNLiveBaseKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/CNLiveBaseKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/CNLiveBaseKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveTripartiteManagement","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveBaseKit/CNLiveBaseKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/CNFontAndRatioTool.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/CNFontAndRatioTool.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/ARC/Utils/UIFont/CNFontAndRatioTool.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/CNFontAndRatioTool.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/CNFontAndRatioTool.d"],"deps-style":"makefile","signature":"845fc62cec8da377bfc88888f0722957"}
"target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/CNLiveBaseKit-dummy.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveBaseKit/CNLiveBaseKit-dummy.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/CNLiveBaseKit-dummy.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveBaseKit/CNLiveBaseKit-dummy.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveBaseKit/CNLiveBaseKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveBaseKit/CNLiveBaseKit-dummy.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/module.modulemap","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--generated-headers>","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--phase0-copy-headers>","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/CNLiveBaseKit-dummy.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=CNLiveBaseKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/CNLiveBaseKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/CNLiveBaseKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/CNLiveBaseKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/CNLiveBaseKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveTripartiteManagement","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveBaseKit/CNLiveBaseKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/CNLiveBaseKit-dummy.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/CNLiveBaseKit-dummy.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveBaseKit/CNLiveBaseKit-dummy.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/CNLiveBaseKit-dummy.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/CNLiveBaseKit-dummy.d"],"deps-style":"makefile","signature":"6a53ca287c958ec303d038f04c31dc90"}
"target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/CNLiveBaseKit_vers.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/DerivedSources/CNLiveBaseKit_vers.c normal armv7 c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/CNLiveBaseKit_vers.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/DerivedSources/CNLiveBaseKit_vers.c normal armv7 c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/DerivedSources/CNLiveBaseKit_vers.c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/module.modulemap","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--generated-headers>","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--phase0-copy-headers>","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/CNLiveBaseKit_vers.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c","-target","armv7-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=CNLiveBaseKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Werror=deprecated-objc-isa-usage","-Werror=objc-root-class","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/CNLiveBaseKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/CNLiveBaseKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/CNLiveBaseKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/CNLiveBaseKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveTripartiteManagement","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/CNLiveBaseKit_vers.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/CNLiveBaseKit_vers.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/DerivedSources/CNLiveBaseKit_vers.c","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/CNLiveBaseKit_vers.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/CNLiveBaseKit_vers.d"],"deps-style":"makefile","signature":"945ba3f5663d24e91580fe46df18c259"}
"target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/GTMBase64.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/ARC/Utils/GTMBase64/GTMBase64.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/GTMBase64.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/ARC/Utils/GTMBase64/GTMBase64.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveBaseKit/CNLiveBaseKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/ARC/Utils/GTMBase64/GTMBase64.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/module.modulemap","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--generated-headers>","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--phase0-copy-headers>","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/GTMBase64.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=CNLiveBaseKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/CNLiveBaseKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/CNLiveBaseKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/CNLiveBaseKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/CNLiveBaseKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveTripartiteManagement","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveBaseKit/CNLiveBaseKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/GTMBase64.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/GTMBase64.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/ARC/Utils/GTMBase64/GTMBase64.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/GTMBase64.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/GTMBase64.d"],"deps-style":"makefile","signature":"1013ada58740d11a6fc78dc7c8270a2a"}
"target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/IOSDeviceConfig.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/ARC/IOSDeviceSetting/IOSDeviceConfig.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/IOSDeviceConfig.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/ARC/IOSDeviceSetting/IOSDeviceConfig.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveBaseKit/CNLiveBaseKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/ARC/IOSDeviceSetting/IOSDeviceConfig.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/module.modulemap","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--generated-headers>","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--phase0-copy-headers>","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/IOSDeviceConfig.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=CNLiveBaseKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/CNLiveBaseKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/CNLiveBaseKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/CNLiveBaseKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/CNLiveBaseKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveTripartiteManagement","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveBaseKit/CNLiveBaseKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/IOSDeviceConfig.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/IOSDeviceConfig.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/ARC/IOSDeviceSetting/IOSDeviceConfig.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/IOSDeviceConfig.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/IOSDeviceConfig.d"],"deps-style":"makefile","signature":"239040a6e1e4f71e02e6f967b4cb9b3e"}
"target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/JSONKit.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/MRC/JSON/JSONKit.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/JSONKit.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/MRC/JSON/JSONKit.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveBaseKit/CNLiveBaseKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/MRC/JSON/JSONKit.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/module.modulemap","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--generated-headers>","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--phase0-copy-headers>","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/JSONKit.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=CNLiveBaseKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/CNLiveBaseKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/CNLiveBaseKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/CNLiveBaseKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/CNLiveBaseKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveTripartiteManagement","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-fno-objc-arc","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveBaseKit/CNLiveBaseKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/JSONKit.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/JSONKit.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/MRC/JSON/JSONKit.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/JSONKit.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/JSONKit.d"],"deps-style":"makefile","signature":"8db3d0037127d50d16cec415877f450d"}
"target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/NSMutableDictionary+Json.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/MRC/JSON/NSMutableDictionary+Json.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/NSMutableDictionary+Json.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/MRC/JSON/NSMutableDictionary+Json.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveBaseKit/CNLiveBaseKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/MRC/JSON/NSMutableDictionary+Json.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/module.modulemap","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--generated-headers>","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--phase0-copy-headers>","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/NSMutableDictionary+Json.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=CNLiveBaseKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/CNLiveBaseKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/CNLiveBaseKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/CNLiveBaseKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/CNLiveBaseKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveTripartiteManagement","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-fno-objc-arc","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveBaseKit/CNLiveBaseKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/NSMutableDictionary+Json.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/NSMutableDictionary+Json.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/MRC/JSON/NSMutableDictionary+Json.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/NSMutableDictionary+Json.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/NSMutableDictionary+Json.d"],"deps-style":"makefile","signature":"68513fbf613f01b74471540916b87e97"}
"target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/NSObject+Json.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/MRC/JSON/NSObject+Json.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/NSObject+Json.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/MRC/JSON/NSObject+Json.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveBaseKit/CNLiveBaseKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/MRC/JSON/NSObject+Json.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/module.modulemap","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--generated-headers>","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--phase0-copy-headers>","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/NSObject+Json.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=CNLiveBaseKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/CNLiveBaseKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/CNLiveBaseKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/CNLiveBaseKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/CNLiveBaseKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveTripartiteManagement","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-fno-objc-arc","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveBaseKit/CNLiveBaseKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/NSObject+Json.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/NSObject+Json.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/MRC/JSON/NSObject+Json.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/NSObject+Json.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/NSObject+Json.d"],"deps-style":"makefile","signature":"5675c21e4774073dd92ae04a4c580511"}
"target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/NSString+AES.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/ARC/Utils/Categorys/NSString+AES.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/NSString+AES.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/ARC/Utils/Categorys/NSString+AES.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveBaseKit/CNLiveBaseKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/ARC/Utils/Categorys/NSString+AES.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/module.modulemap","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--generated-headers>","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--phase0-copy-headers>","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/NSString+AES.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=CNLiveBaseKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/CNLiveBaseKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/CNLiveBaseKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/CNLiveBaseKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/CNLiveBaseKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveTripartiteManagement","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveBaseKit/CNLiveBaseKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/NSString+AES.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/NSString+AES.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/ARC/Utils/Categorys/NSString+AES.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/NSString+AES.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/NSString+AES.d"],"deps-style":"makefile","signature":"31d8bcfec3852ab141e3575c5bfe8027"}
"target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/NSString+CNLiveExtension.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/ARC/Utils/Categorys/NSString+CNLiveExtension.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/NSString+CNLiveExtension.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/ARC/Utils/Categorys/NSString+CNLiveExtension.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveBaseKit/CNLiveBaseKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/ARC/Utils/Categorys/NSString+CNLiveExtension.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/module.modulemap","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--generated-headers>","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--phase0-copy-headers>","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/NSString+CNLiveExtension.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=CNLiveBaseKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/CNLiveBaseKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/CNLiveBaseKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/CNLiveBaseKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/CNLiveBaseKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveTripartiteManagement","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveBaseKit/CNLiveBaseKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/NSString+CNLiveExtension.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/NSString+CNLiveExtension.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/ARC/Utils/Categorys/NSString+CNLiveExtension.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/NSString+CNLiveExtension.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/NSString+CNLiveExtension.d"],"deps-style":"makefile","signature":"07bc211a058399ecc5e5374ba14d2945"}
"target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/PathUtility.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/ARC/Utils/Path/PathUtility.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/PathUtility.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/ARC/Utils/Path/PathUtility.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveBaseKit/CNLiveBaseKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/ARC/Utils/Path/PathUtility.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/module.modulemap","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--generated-headers>","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--phase0-copy-headers>","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/PathUtility.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=CNLiveBaseKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/CNLiveBaseKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/CNLiveBaseKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/CNLiveBaseKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/CNLiveBaseKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveTripartiteManagement","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveBaseKit/CNLiveBaseKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/PathUtility.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/PathUtility.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/ARC/Utils/Path/PathUtility.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/PathUtility.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/PathUtility.d"],"deps-style":"makefile","signature":"88ac21665ad0c83c7fa38cbd7cf13f0d"}
"target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/UIButton+CNCreateButton.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/ARC/Utils/Categorys/UIButton+CNCreateButton.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/UIButton+CNCreateButton.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/ARC/Utils/Categorys/UIButton+CNCreateButton.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveBaseKit/CNLiveBaseKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/ARC/Utils/Categorys/UIButton+CNCreateButton.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/module.modulemap","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--generated-headers>","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--phase0-copy-headers>","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/UIButton+CNCreateButton.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=CNLiveBaseKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/CNLiveBaseKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/CNLiveBaseKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/CNLiveBaseKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/CNLiveBaseKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveTripartiteManagement","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveBaseKit/CNLiveBaseKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/UIButton+CNCreateButton.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/UIButton+CNCreateButton.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/ARC/Utils/Categorys/UIButton+CNCreateButton.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/UIButton+CNCreateButton.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/UIButton+CNCreateButton.d"],"deps-style":"makefile","signature":"c2709655c5b22c3102de6057d8106a3c"}
"target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/UIColor+MLPFlatColors.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/ARC/Utils/Color/UIColor+MLPFlatColors.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/UIColor+MLPFlatColors.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/ARC/Utils/Color/UIColor+MLPFlatColors.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveBaseKit/CNLiveBaseKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/ARC/Utils/Color/UIColor+MLPFlatColors.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/module.modulemap","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--generated-headers>","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--phase0-copy-headers>","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/UIColor+MLPFlatColors.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=CNLiveBaseKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/CNLiveBaseKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/CNLiveBaseKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/CNLiveBaseKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/CNLiveBaseKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveTripartiteManagement","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveBaseKit/CNLiveBaseKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/UIColor+MLPFlatColors.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/UIColor+MLPFlatColors.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/ARC/Utils/Color/UIColor+MLPFlatColors.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/UIColor+MLPFlatColors.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/UIColor+MLPFlatColors.d"],"deps-style":"makefile","signature":"299dcde0e34e1683b1b58d232004f9ca"}
"target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/UIFont+CNLiveExtension.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/ARC/Utils/UIFont/UIFont+CNLiveExtension.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/UIFont+CNLiveExtension.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/ARC/Utils/UIFont/UIFont+CNLiveExtension.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveBaseKit/CNLiveBaseKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/ARC/Utils/UIFont/UIFont+CNLiveExtension.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/module.modulemap","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--generated-headers>","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--phase0-copy-headers>","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/UIFont+CNLiveExtension.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=CNLiveBaseKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/CNLiveBaseKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/CNLiveBaseKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/CNLiveBaseKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/CNLiveBaseKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveTripartiteManagement","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveBaseKit/CNLiveBaseKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/UIFont+CNLiveExtension.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/UIFont+CNLiveExtension.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/ARC/Utils/UIFont/UIFont+CNLiveExtension.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/UIFont+CNLiveExtension.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/UIFont+CNLiveExtension.d"],"deps-style":"makefile","signature":"59c2aa2674e0971449bdac5142906f11"}
"target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/UIFont+TLChat.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/ARC/Utils/Categorys/UIFont+TLChat.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/UIFont+TLChat.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/ARC/Utils/Categorys/UIFont+TLChat.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveBaseKit/CNLiveBaseKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/ARC/Utils/Categorys/UIFont+TLChat.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/module.modulemap","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--generated-headers>","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--phase0-copy-headers>","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/UIFont+TLChat.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=CNLiveBaseKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/CNLiveBaseKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/CNLiveBaseKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/CNLiveBaseKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/CNLiveBaseKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveTripartiteManagement","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveBaseKit/CNLiveBaseKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/UIFont+TLChat.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/UIFont+TLChat.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/ARC/Utils/Categorys/UIFont+TLChat.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/UIFont+TLChat.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/UIFont+TLChat.d"],"deps-style":"makefile","signature":"40933efd1786bc472181c751e3cce5cc"}
"target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/UIImage+CNLiveBaseExtension.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/ARC/Utils/Categorys/UIImage+CNLiveBaseExtension.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/UIImage+CNLiveBaseExtension.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/ARC/Utils/Categorys/UIImage+CNLiveBaseExtension.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveBaseKit/CNLiveBaseKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/ARC/Utils/Categorys/UIImage+CNLiveBaseExtension.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/module.modulemap","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--generated-headers>","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--phase0-copy-headers>","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/UIImage+CNLiveBaseExtension.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=CNLiveBaseKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/CNLiveBaseKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/CNLiveBaseKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/CNLiveBaseKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/CNLiveBaseKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveTripartiteManagement","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveBaseKit/CNLiveBaseKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/UIImage+CNLiveBaseExtension.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/UIImage+CNLiveBaseExtension.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/ARC/Utils/Categorys/UIImage+CNLiveBaseExtension.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/UIImage+CNLiveBaseExtension.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/UIImage+CNLiveBaseExtension.d"],"deps-style":"makefile","signature":"1e67498035a628c832012c9aa74ed091"}
"target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/UIView+CNAlertView.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/ARC/Utils/Categorys/UIView+CNAlertView.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/UIView+CNAlertView.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/ARC/Utils/Categorys/UIView+CNAlertView.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveBaseKit/CNLiveBaseKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/ARC/Utils/Categorys/UIView+CNAlertView.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/module.modulemap","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--generated-headers>","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--phase0-copy-headers>","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/UIView+CNAlertView.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=CNLiveBaseKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/CNLiveBaseKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/CNLiveBaseKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/CNLiveBaseKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/CNLiveBaseKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveTripartiteManagement","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveBaseKit/CNLiveBaseKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/UIView+CNAlertView.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/UIView+CNAlertView.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/ARC/Utils/Categorys/UIView+CNAlertView.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/UIView+CNAlertView.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/UIView+CNAlertView.d"],"deps-style":"makefile","signature":"66b60798a6fed62d5e2ce9ee29e004c3"}
"target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/UIView+Extension.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/ARC/Utils/Categorys/UIView+Extension.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/UIView+Extension.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/ARC/Utils/Categorys/UIView+Extension.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveBaseKit/CNLiveBaseKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/ARC/Utils/Categorys/UIView+Extension.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/module.modulemap","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--generated-headers>","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--phase0-copy-headers>","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/UIView+Extension.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=CNLiveBaseKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/CNLiveBaseKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/CNLiveBaseKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/CNLiveBaseKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/CNLiveBaseKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveTripartiteManagement","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveBaseKit/CNLiveBaseKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/UIView+Extension.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/UIView+Extension.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/ARC/Utils/Categorys/UIView+Extension.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/UIView+Extension.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/UIView+Extension.d"],"deps-style":"makefile","signature":"ae92125f438ffa0eaefe28acef8aad2d"}
"target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/ARC/BaseModel/BaseModel.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/CNLiveBaseKit.framework/Headers/BaseModel.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/ARC/BaseModel/BaseModel.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/CNLiveBaseKit.framework/Headers/BaseModel.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/ARC/BaseModel/BaseModel.h/","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--HeadermapTaskProducer>","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/CNLiveBaseKit.framework/Headers/BaseModel.h"]}
"target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/ARC/IOSDeviceSetting/IOSDeviceConfig.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/CNLiveBaseKit.framework/Headers/IOSDeviceConfig.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/ARC/IOSDeviceSetting/IOSDeviceConfig.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/CNLiveBaseKit.framework/Headers/IOSDeviceConfig.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/ARC/IOSDeviceSetting/IOSDeviceConfig.h/","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--HeadermapTaskProducer>","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/CNLiveBaseKit.framework/Headers/IOSDeviceConfig.h"]}
"target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/ARC/IOSDeviceSetting/IOSDeviceMacro.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/CNLiveBaseKit.framework/Headers/IOSDeviceMacro.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/ARC/IOSDeviceSetting/IOSDeviceMacro.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/CNLiveBaseKit.framework/Headers/IOSDeviceMacro.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/ARC/IOSDeviceSetting/IOSDeviceMacro.h/","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--HeadermapTaskProducer>","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/CNLiveBaseKit.framework/Headers/IOSDeviceMacro.h"]}
"target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/ARC/Utils/CNLiveDefinesHeader.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/CNLiveBaseKit.framework/Headers/CNLiveDefinesHeader.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/ARC/Utils/CNLiveDefinesHeader.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/CNLiveBaseKit.framework/Headers/CNLiveDefinesHeader.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/ARC/Utils/CNLiveDefinesHeader.h/","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--HeadermapTaskProducer>","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/CNLiveBaseKit.framework/Headers/CNLiveDefinesHeader.h"]}
"target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/ARC/Utils/Categorys/NSString+AES.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/CNLiveBaseKit.framework/Headers/NSString+AES.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/ARC/Utils/Categorys/NSString+AES.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/CNLiveBaseKit.framework/Headers/NSString+AES.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/ARC/Utils/Categorys/NSString+AES.h/","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--HeadermapTaskProducer>","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/CNLiveBaseKit.framework/Headers/NSString+AES.h"]}
"target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/ARC/Utils/Categorys/NSString+CNLiveExtension.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/CNLiveBaseKit.framework/Headers/NSString+CNLiveExtension.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/ARC/Utils/Categorys/NSString+CNLiveExtension.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/CNLiveBaseKit.framework/Headers/NSString+CNLiveExtension.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/ARC/Utils/Categorys/NSString+CNLiveExtension.h/","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--HeadermapTaskProducer>","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/CNLiveBaseKit.framework/Headers/NSString+CNLiveExtension.h"]}
"target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/ARC/Utils/Categorys/UIButton+CNCreateButton.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/CNLiveBaseKit.framework/Headers/UIButton+CNCreateButton.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/ARC/Utils/Categorys/UIButton+CNCreateButton.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/CNLiveBaseKit.framework/Headers/UIButton+CNCreateButton.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/ARC/Utils/Categorys/UIButton+CNCreateButton.h/","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--HeadermapTaskProducer>","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/CNLiveBaseKit.framework/Headers/UIButton+CNCreateButton.h"]}
"target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/ARC/Utils/Categorys/UIFont+TLChat.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/CNLiveBaseKit.framework/Headers/UIFont+TLChat.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/ARC/Utils/Categorys/UIFont+TLChat.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/CNLiveBaseKit.framework/Headers/UIFont+TLChat.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/ARC/Utils/Categorys/UIFont+TLChat.h/","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--HeadermapTaskProducer>","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/CNLiveBaseKit.framework/Headers/UIFont+TLChat.h"]}
"target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/ARC/Utils/Categorys/UIImage+CNLiveBaseExtension.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/CNLiveBaseKit.framework/Headers/UIImage+CNLiveBaseExtension.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/ARC/Utils/Categorys/UIImage+CNLiveBaseExtension.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/CNLiveBaseKit.framework/Headers/UIImage+CNLiveBaseExtension.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/ARC/Utils/Categorys/UIImage+CNLiveBaseExtension.h/","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--HeadermapTaskProducer>","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/CNLiveBaseKit.framework/Headers/UIImage+CNLiveBaseExtension.h"]}
"target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/ARC/Utils/Categorys/UIView+CNAlertView.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/CNLiveBaseKit.framework/Headers/UIView+CNAlertView.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/ARC/Utils/Categorys/UIView+CNAlertView.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/CNLiveBaseKit.framework/Headers/UIView+CNAlertView.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/ARC/Utils/Categorys/UIView+CNAlertView.h/","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--HeadermapTaskProducer>","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/CNLiveBaseKit.framework/Headers/UIView+CNAlertView.h"]}
"target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/ARC/Utils/Categorys/UIView+Extension.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/CNLiveBaseKit.framework/Headers/UIView+Extension.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/ARC/Utils/Categorys/UIView+Extension.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/CNLiveBaseKit.framework/Headers/UIView+Extension.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/ARC/Utils/Categorys/UIView+Extension.h/","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--HeadermapTaskProducer>","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/CNLiveBaseKit.framework/Headers/UIView+Extension.h"]}
"target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/ARC/Utils/Color/ColorHeaders.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/CNLiveBaseKit.framework/Headers/ColorHeaders.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/ARC/Utils/Color/ColorHeaders.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/CNLiveBaseKit.framework/Headers/ColorHeaders.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/ARC/Utils/Color/ColorHeaders.h/","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--HeadermapTaskProducer>","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/CNLiveBaseKit.framework/Headers/ColorHeaders.h"]}
"target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/ARC/Utils/Color/ColorMacro.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/CNLiveBaseKit.framework/Headers/ColorMacro.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/ARC/Utils/Color/ColorMacro.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/CNLiveBaseKit.framework/Headers/ColorMacro.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/ARC/Utils/Color/ColorMacro.h/","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--HeadermapTaskProducer>","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/CNLiveBaseKit.framework/Headers/ColorMacro.h"]}
"target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/ARC/Utils/Color/UIColor+MLPFlatColors.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/CNLiveBaseKit.framework/Headers/UIColor+MLPFlatColors.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/ARC/Utils/Color/UIColor+MLPFlatColors.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/CNLiveBaseKit.framework/Headers/UIColor+MLPFlatColors.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/ARC/Utils/Color/UIColor+MLPFlatColors.h/","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--HeadermapTaskProducer>","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/CNLiveBaseKit.framework/Headers/UIColor+MLPFlatColors.h"]}
"target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/ARC/Utils/GTMBase64/GTMBase64.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/CNLiveBaseKit.framework/Headers/GTMBase64.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/ARC/Utils/GTMBase64/GTMBase64.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/CNLiveBaseKit.framework/Headers/GTMBase64.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/ARC/Utils/GTMBase64/GTMBase64.h/","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--HeadermapTaskProducer>","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/CNLiveBaseKit.framework/Headers/GTMBase64.h"]}
"target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/ARC/Utils/GTMBase64/GTMDefines.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/CNLiveBaseKit.framework/Headers/GTMDefines.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/ARC/Utils/GTMBase64/GTMDefines.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/CNLiveBaseKit.framework/Headers/GTMDefines.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/ARC/Utils/GTMBase64/GTMDefines.h/","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--HeadermapTaskProducer>","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/CNLiveBaseKit.framework/Headers/GTMDefines.h"]}
"target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/ARC/Utils/Path/PathHeaders.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/CNLiveBaseKit.framework/Headers/PathHeaders.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/ARC/Utils/Path/PathHeaders.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/CNLiveBaseKit.framework/Headers/PathHeaders.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/ARC/Utils/Path/PathHeaders.h/","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--HeadermapTaskProducer>","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/CNLiveBaseKit.framework/Headers/PathHeaders.h"]}
"target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/ARC/Utils/Path/PathUtility.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/CNLiveBaseKit.framework/Headers/PathUtility.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/ARC/Utils/Path/PathUtility.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/CNLiveBaseKit.framework/Headers/PathUtility.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/ARC/Utils/Path/PathUtility.h/","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--HeadermapTaskProducer>","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/CNLiveBaseKit.framework/Headers/PathUtility.h"]}
"target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/ARC/Utils/UIFont/CNFontAndRatioTool.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/CNLiveBaseKit.framework/Headers/CNFontAndRatioTool.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/ARC/Utils/UIFont/CNFontAndRatioTool.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/CNLiveBaseKit.framework/Headers/CNFontAndRatioTool.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/ARC/Utils/UIFont/CNFontAndRatioTool.h/","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--HeadermapTaskProducer>","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/CNLiveBaseKit.framework/Headers/CNFontAndRatioTool.h"]}
"target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/ARC/Utils/UIFont/UIFont+CNLiveExtension.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/CNLiveBaseKit.framework/Headers/UIFont+CNLiveExtension.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/ARC/Utils/UIFont/UIFont+CNLiveExtension.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/CNLiveBaseKit.framework/Headers/UIFont+CNLiveExtension.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/ARC/Utils/UIFont/UIFont+CNLiveExtension.h/","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--HeadermapTaskProducer>","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/CNLiveBaseKit.framework/Headers/UIFont+CNLiveExtension.h"]}
"target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/CNLiveBaseKit.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/CNLiveBaseKit.framework/Headers/CNLiveBaseKit.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/CNLiveBaseKit.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/CNLiveBaseKit.framework/Headers/CNLiveBaseKit.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/CNLiveBaseKit.h/","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--HeadermapTaskProducer>","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/CNLiveBaseKit.framework/Headers/CNLiveBaseKit.h"]}
"target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/MRC/JSON/JSONKit.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/CNLiveBaseKit.framework/Headers/JSONKit.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/MRC/JSON/JSONKit.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/CNLiveBaseKit.framework/Headers/JSONKit.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/MRC/JSON/JSONKit.h/","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--HeadermapTaskProducer>","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/CNLiveBaseKit.framework/Headers/JSONKit.h"]}
"target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/MRC/JSON/NSMutableDictionary+Json.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/CNLiveBaseKit.framework/Headers/NSMutableDictionary+Json.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/MRC/JSON/NSMutableDictionary+Json.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/CNLiveBaseKit.framework/Headers/NSMutableDictionary+Json.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/MRC/JSON/NSMutableDictionary+Json.h/","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--HeadermapTaskProducer>","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/CNLiveBaseKit.framework/Headers/NSMutableDictionary+Json.h"]}
"target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/MRC/JSON/NSObject+Json.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/CNLiveBaseKit.framework/Headers/NSObject+Json.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/MRC/JSON/NSObject+Json.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/CNLiveBaseKit.framework/Headers/NSObject+Json.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBaseKit/CNLiveBaseKit/Classes/MRC/JSON/NSObject+Json.h/","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--HeadermapTaskProducer>","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/CNLiveBaseKit.framework/Headers/NSObject+Json.h"]}
"target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveBaseKit/CNLiveBaseKit-umbrella.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/CNLiveBaseKit.framework/Headers/CNLiveBaseKit-umbrella.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveBaseKit/CNLiveBaseKit-umbrella.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/CNLiveBaseKit.framework/Headers/CNLiveBaseKit-umbrella.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveBaseKit/CNLiveBaseKit-umbrella.h/","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--HeadermapTaskProducer>","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/CNLiveBaseKit.framework/Headers/CNLiveBaseKit-umbrella.h"]}
"target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184-:Debug:CreateUniversalBinary /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/CNLiveBaseKit.framework/CNLiveBaseKit normal armv7 arm64": {"tool":"shell","description":"CreateUniversalBinary /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/CNLiveBaseKit.framework/CNLiveBaseKit normal armv7 arm64","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/Binary/CNLiveBaseKit","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/Binary/CNLiveBaseKit","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--phase0-copy-headers>","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/CNLiveBaseKit.framework/CNLiveBaseKit","<Linked Binary /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/CNLiveBaseKit.framework/CNLiveBaseKit>"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/lipo","-create","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/Binary/CNLiveBaseKit","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/Binary/CNLiveBaseKit","-output","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/CNLiveBaseKit.framework/CNLiveBaseKit"],"env":{},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","signature":"7cbbe9f13df176b7d8143204a391ca8e"}
"target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184-:Debug:Ditto /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/module.modulemap /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/CNLiveBaseKit.framework/Modules/module.modulemap": {"tool":"file-copy","description":"Ditto /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/module.modulemap /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/CNLiveBaseKit.framework/Modules/module.modulemap","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/module.modulemap/","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--HeadermapTaskProducer>","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/CNLiveBaseKit.framework/Modules/module.modulemap"]}
"target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184-:Debug:Ld /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/Binary/CNLiveBaseKit normal arm64": {"tool":"shell","description":"Ld /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/Binary/CNLiveBaseKit normal arm64","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/BaseModel.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/CNFontAndRatioTool.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/CNLiveBaseKit-dummy.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/GTMBase64.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/IOSDeviceConfig.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/JSONKit.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/NSMutableDictionary+Json.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/NSObject+Json.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/NSString+AES.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/NSString+CNLiveExtension.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/PathUtility.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/UIButton+CNCreateButton.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/UIColor+MLPFlatColors.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/UIFont+CNLiveExtension.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/UIFont+TLChat.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/UIImage+CNLiveBaseExtension.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/UIView+CNAlertView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/UIView+Extension.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/CNLiveBaseKit_vers.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/CNLiveBaseKit.LinkFileList","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--phase0-copy-headers>","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/Binary/CNLiveBaseKit"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-target","arm64-apple-ios9.0","-dynamiclib","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-L/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveTripartiteManagement","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-filelist","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/CNLiveBaseKit.LinkFileList","-install_name","@rpath/CNLiveBaseKit.framework/CNLiveBaseKit","-Xlinker","-rpath","-Xlinker","@executable_path/Frameworks","-Xlinker","-rpath","-Xlinker","@loader_path/Frameworks","-dead_strip","-Xlinker","-object_path_lto","-Xlinker","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/CNLiveBaseKit_lto.o","-Xlinker","-export_dynamic","-Xlinker","-no_deduplicate","-fembed-bitcode-marker","-fobjc-arc","-fobjc-link-runtime","-framework","Foundation","-framework","UIKit","-framework","CNLiveTripartiteManagement","-framework","Foundation","-framework","UIKit","-compatibility_version","1","-current_version","1","-Xlinker","-dependency_info","-Xlinker","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/CNLiveBaseKit_dependency_info.dat","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/Binary/CNLiveBaseKit"],"env":{},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/CNLiveBaseKit_dependency_info.dat"],"deps-style":"dependency-info","signature":"3094a3b56cb2a47ae6e291ed866c61f8"}
"target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184-:Debug:Ld /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/Binary/CNLiveBaseKit normal armv7": {"tool":"shell","description":"Ld /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/Binary/CNLiveBaseKit normal armv7","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/BaseModel.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/CNFontAndRatioTool.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/CNLiveBaseKit-dummy.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/GTMBase64.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/IOSDeviceConfig.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/JSONKit.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/NSMutableDictionary+Json.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/NSObject+Json.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/NSString+AES.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/NSString+CNLiveExtension.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/PathUtility.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/UIButton+CNCreateButton.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/UIColor+MLPFlatColors.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/UIFont+CNLiveExtension.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/UIFont+TLChat.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/UIImage+CNLiveBaseExtension.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/UIView+CNAlertView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/UIView+Extension.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/CNLiveBaseKit_vers.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/CNLiveBaseKit.LinkFileList","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--phase0-copy-headers>","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/Binary/CNLiveBaseKit"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-target","armv7-apple-ios9.0","-dynamiclib","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-L/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveTripartiteManagement","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-filelist","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/CNLiveBaseKit.LinkFileList","-install_name","@rpath/CNLiveBaseKit.framework/CNLiveBaseKit","-Xlinker","-rpath","-Xlinker","@executable_path/Frameworks","-Xlinker","-rpath","-Xlinker","@loader_path/Frameworks","-dead_strip","-Xlinker","-object_path_lto","-Xlinker","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/CNLiveBaseKit_lto.o","-Xlinker","-export_dynamic","-Xlinker","-no_deduplicate","-fembed-bitcode-marker","-fobjc-arc","-fobjc-link-runtime","-framework","Foundation","-framework","UIKit","-framework","CNLiveTripartiteManagement","-framework","Foundation","-framework","UIKit","-compatibility_version","1","-current_version","1","-Xlinker","-dependency_info","-Xlinker","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/CNLiveBaseKit_dependency_info.dat","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/Binary/CNLiveBaseKit"],"env":{},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/CNLiveBaseKit_dependency_info.dat"],"deps-style":"dependency-info","signature":"be42471b9e24c2f3a52d45571971439f"}
"target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184-:Debug:MkDir /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/CNLiveBaseKit.framework": {"tool":"mkdir","description":"MkDir /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/CNLiveBaseKit.framework","inputs":["<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--start>","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/CNLiveBaseKit.framework","<MkDir /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/CNLiveBaseKit.framework>"]}
"target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184-:Debug:MkDir /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/CNLiveBaseKit.framework/Headers": {"tool":"mkdir","description":"MkDir /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/CNLiveBaseKit.framework/Headers","inputs":["<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--start>","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/CNLiveBaseKit.framework/Headers","<MkDir /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/CNLiveBaseKit.framework/Headers>"]}
"target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184-:Debug:ProcessInfoPlistFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/CNLiveBaseKit.framework/Info.plist /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveBaseKit/CNLiveBaseKit-Info.plist": {"tool":"info-plist-processor","description":"ProcessInfoPlistFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/CNLiveBaseKit.framework/Info.plist /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveBaseKit/CNLiveBaseKit-Info.plist","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveBaseKit/CNLiveBaseKit-Info.plist","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--HeadermapTaskProducer>","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/CNLiveBaseKit.framework/Info.plist"]}
"target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184-:Debug:Touch /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/CNLiveBaseKit.framework": {"tool":"shell","description":"Touch /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/CNLiveBaseKit.framework","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/CNLiveBaseKit.framework","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--Barrier-RegisterExecutionPolicyException>","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--entry>"],"outputs":["<Touch /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/CNLiveBaseKit.framework>"],"args":["/usr/bin/touch","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/CNLiveBaseKit.framework"],"env":{},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","signature":"ecd085d360430b1fb24200a2b8eb6b19"}
"target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/CNLiveBaseKit-all-non-framework-target-headers.hmap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/CNLiveBaseKit-all-non-framework-target-headers.hmap","inputs":["<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--GeneratedFilesTaskProducer>","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/CNLiveBaseKit-all-non-framework-target-headers.hmap"]}
"target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/CNLiveBaseKit-all-target-headers.hmap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/CNLiveBaseKit-all-target-headers.hmap","inputs":["<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--GeneratedFilesTaskProducer>","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/CNLiveBaseKit-all-target-headers.hmap"]}
"target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/CNLiveBaseKit-generated-files.hmap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/CNLiveBaseKit-generated-files.hmap","inputs":["<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--GeneratedFilesTaskProducer>","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/CNLiveBaseKit-generated-files.hmap"]}
"target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/CNLiveBaseKit-own-target-headers.hmap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/CNLiveBaseKit-own-target-headers.hmap","inputs":["<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--GeneratedFilesTaskProducer>","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/CNLiveBaseKit-own-target-headers.hmap"]}
"target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/CNLiveBaseKit-project-headers.hmap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/CNLiveBaseKit-project-headers.hmap","inputs":["<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--GeneratedFilesTaskProducer>","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/CNLiveBaseKit-project-headers.hmap"]}
"target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/CNLiveBaseKit.hmap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/CNLiveBaseKit.hmap","inputs":["<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--GeneratedFilesTaskProducer>","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/CNLiveBaseKit.hmap"]}
"target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/DerivedSources/CNLiveBaseKit_vers.c": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/DerivedSources/CNLiveBaseKit_vers.c","inputs":["<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--phase0-copy-headers>","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/DerivedSources/CNLiveBaseKit_vers.c"]}
"target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/CNLiveBaseKit.LinkFileList": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/CNLiveBaseKit.LinkFileList","inputs":["<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--phase0-copy-headers>","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/arm64/CNLiveBaseKit.LinkFileList"]}
"target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/CNLiveBaseKit.LinkFileList": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/CNLiveBaseKit.LinkFileList","inputs":["<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--phase0-copy-headers>","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/Objects-normal/armv7/CNLiveBaseKit.LinkFileList"]}
"target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/all-product-headers.yaml": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/all-product-headers.yaml","inputs":["<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--GeneratedFilesTaskProducer>","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/all-product-headers.yaml"]}
"target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/module.modulemap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/module.modulemap","inputs":["<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--HeadermapTaskProducer>","<target-CNLiveBaseKit-285b96a559574e49fe0e1a40c03a5a8e2144f2ee9523098ad2313e0b6dab9184--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBaseKit.build/module.modulemap"]}
"target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/arm64/BHAnnotation.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBeeHive/CNLiveBeeHive/Classes/BeeHive/BHAnnotation.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/arm64/BHAnnotation.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBeeHive/CNLiveBeeHive/Classes/BeeHive/BHAnnotation.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveBeeHive/CNLiveBeeHive-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBeeHive/CNLiveBeeHive/Classes/BeeHive/BHAnnotation.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/module.modulemap","<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--generated-headers>","<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--phase0-copy-headers>","<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/arm64/BHAnnotation.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=CNLiveBeeHive","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/CNLiveBeeHive-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/CNLiveBeeHive-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/CNLiveBeeHive-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/CNLiveBeeHive-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveBeeHive/CNLiveBeeHive-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/arm64/BHAnnotation.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/arm64/BHAnnotation.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBeeHive/CNLiveBeeHive/Classes/BeeHive/BHAnnotation.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/arm64/BHAnnotation.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/arm64/BHAnnotation.d"],"deps-style":"makefile","signature":"6da75a20ee7d91df7eb368e51d0166dd"}
"target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/arm64/BHAppDelegate.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBeeHive/CNLiveBeeHive/Classes/BeeHive/BHAppDelegate.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/arm64/BHAppDelegate.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBeeHive/CNLiveBeeHive/Classes/BeeHive/BHAppDelegate.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveBeeHive/CNLiveBeeHive-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBeeHive/CNLiveBeeHive/Classes/BeeHive/BHAppDelegate.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/module.modulemap","<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--generated-headers>","<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--phase0-copy-headers>","<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/arm64/BHAppDelegate.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=CNLiveBeeHive","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/CNLiveBeeHive-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/CNLiveBeeHive-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/CNLiveBeeHive-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/CNLiveBeeHive-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveBeeHive/CNLiveBeeHive-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/arm64/BHAppDelegate.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/arm64/BHAppDelegate.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBeeHive/CNLiveBeeHive/Classes/BeeHive/BHAppDelegate.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/arm64/BHAppDelegate.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/arm64/BHAppDelegate.d"],"deps-style":"makefile","signature":"79af50e2c53c9f789b957bc4b1760bd1"}
"target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/arm64/BHConfig.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBeeHive/CNLiveBeeHive/Classes/BeeHive/BHConfig.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/arm64/BHConfig.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBeeHive/CNLiveBeeHive/Classes/BeeHive/BHConfig.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveBeeHive/CNLiveBeeHive-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBeeHive/CNLiveBeeHive/Classes/BeeHive/BHConfig.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/module.modulemap","<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--generated-headers>","<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--phase0-copy-headers>","<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/arm64/BHConfig.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=CNLiveBeeHive","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/CNLiveBeeHive-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/CNLiveBeeHive-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/CNLiveBeeHive-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/CNLiveBeeHive-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveBeeHive/CNLiveBeeHive-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/arm64/BHConfig.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/arm64/BHConfig.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBeeHive/CNLiveBeeHive/Classes/BeeHive/BHConfig.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/arm64/BHConfig.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/arm64/BHConfig.d"],"deps-style":"makefile","signature":"d55fa2a8322fecb6954bd9643f5ac3ba"}
"target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/arm64/BHContext.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBeeHive/CNLiveBeeHive/Classes/BeeHive/BHContext.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/arm64/BHContext.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBeeHive/CNLiveBeeHive/Classes/BeeHive/BHContext.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveBeeHive/CNLiveBeeHive-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBeeHive/CNLiveBeeHive/Classes/BeeHive/BHContext.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/module.modulemap","<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--generated-headers>","<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--phase0-copy-headers>","<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/arm64/BHContext.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=CNLiveBeeHive","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/CNLiveBeeHive-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/CNLiveBeeHive-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/CNLiveBeeHive-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/CNLiveBeeHive-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveBeeHive/CNLiveBeeHive-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/arm64/BHContext.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/arm64/BHContext.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBeeHive/CNLiveBeeHive/Classes/BeeHive/BHContext.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/arm64/BHContext.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/arm64/BHContext.d"],"deps-style":"makefile","signature":"2fc341bf17218c7c3241feec1329ac74"}
"target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/arm64/BHModuleManager.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBeeHive/CNLiveBeeHive/Classes/BeeHive/BHModuleManager.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/arm64/BHModuleManager.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBeeHive/CNLiveBeeHive/Classes/BeeHive/BHModuleManager.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveBeeHive/CNLiveBeeHive-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBeeHive/CNLiveBeeHive/Classes/BeeHive/BHModuleManager.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/module.modulemap","<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--generated-headers>","<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--phase0-copy-headers>","<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/arm64/BHModuleManager.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=CNLiveBeeHive","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/CNLiveBeeHive-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/CNLiveBeeHive-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/CNLiveBeeHive-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/CNLiveBeeHive-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveBeeHive/CNLiveBeeHive-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/arm64/BHModuleManager.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/arm64/BHModuleManager.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBeeHive/CNLiveBeeHive/Classes/BeeHive/BHModuleManager.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/arm64/BHModuleManager.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/arm64/BHModuleManager.d"],"deps-style":"makefile","signature":"b0d6191804cd0e14f79a22d00798539b"}
"target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/arm64/BHRouter.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBeeHive/CNLiveBeeHive/Classes/BeeHive/BHRouter.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/arm64/BHRouter.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBeeHive/CNLiveBeeHive/Classes/BeeHive/BHRouter.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveBeeHive/CNLiveBeeHive-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBeeHive/CNLiveBeeHive/Classes/BeeHive/BHRouter.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/module.modulemap","<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--generated-headers>","<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--phase0-copy-headers>","<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/arm64/BHRouter.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=CNLiveBeeHive","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/CNLiveBeeHive-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/CNLiveBeeHive-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/CNLiveBeeHive-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/CNLiveBeeHive-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveBeeHive/CNLiveBeeHive-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/arm64/BHRouter.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/arm64/BHRouter.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBeeHive/CNLiveBeeHive/Classes/BeeHive/BHRouter.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/arm64/BHRouter.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/arm64/BHRouter.d"],"deps-style":"makefile","signature":"a2d5cb840e2ae70b6754459cb51d03d2"}
"target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/arm64/BHServiceManager.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBeeHive/CNLiveBeeHive/Classes/BeeHive/BHServiceManager.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/arm64/BHServiceManager.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBeeHive/CNLiveBeeHive/Classes/BeeHive/BHServiceManager.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveBeeHive/CNLiveBeeHive-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBeeHive/CNLiveBeeHive/Classes/BeeHive/BHServiceManager.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/module.modulemap","<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--generated-headers>","<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--phase0-copy-headers>","<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/arm64/BHServiceManager.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=CNLiveBeeHive","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/CNLiveBeeHive-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/CNLiveBeeHive-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/CNLiveBeeHive-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/CNLiveBeeHive-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveBeeHive/CNLiveBeeHive-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/arm64/BHServiceManager.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/arm64/BHServiceManager.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBeeHive/CNLiveBeeHive/Classes/BeeHive/BHServiceManager.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/arm64/BHServiceManager.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/arm64/BHServiceManager.d"],"deps-style":"makefile","signature":"5fb1093a597e706e3bac8515429366a3"}
"target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/arm64/BHTimeProfiler.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBeeHive/CNLiveBeeHive/Classes/BeeHive/BHTimeProfiler.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/arm64/BHTimeProfiler.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBeeHive/CNLiveBeeHive/Classes/BeeHive/BHTimeProfiler.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveBeeHive/CNLiveBeeHive-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBeeHive/CNLiveBeeHive/Classes/BeeHive/BHTimeProfiler.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/module.modulemap","<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--generated-headers>","<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--phase0-copy-headers>","<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/arm64/BHTimeProfiler.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=CNLiveBeeHive","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/CNLiveBeeHive-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/CNLiveBeeHive-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/CNLiveBeeHive-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/CNLiveBeeHive-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveBeeHive/CNLiveBeeHive-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/arm64/BHTimeProfiler.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/arm64/BHTimeProfiler.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBeeHive/CNLiveBeeHive/Classes/BeeHive/BHTimeProfiler.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/arm64/BHTimeProfiler.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/arm64/BHTimeProfiler.d"],"deps-style":"makefile","signature":"c18e43acba6d266f6fb5224f38aa6376"}
"target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/arm64/BHWatchDog.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBeeHive/CNLiveBeeHive/Classes/BeeHive/BHWatchDog.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/arm64/BHWatchDog.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBeeHive/CNLiveBeeHive/Classes/BeeHive/BHWatchDog.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveBeeHive/CNLiveBeeHive-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBeeHive/CNLiveBeeHive/Classes/BeeHive/BHWatchDog.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/module.modulemap","<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--generated-headers>","<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--phase0-copy-headers>","<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/arm64/BHWatchDog.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=CNLiveBeeHive","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/CNLiveBeeHive-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/CNLiveBeeHive-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/CNLiveBeeHive-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/CNLiveBeeHive-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveBeeHive/CNLiveBeeHive-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/arm64/BHWatchDog.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/arm64/BHWatchDog.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBeeHive/CNLiveBeeHive/Classes/BeeHive/BHWatchDog.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/arm64/BHWatchDog.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/arm64/BHWatchDog.d"],"deps-style":"makefile","signature":"26cf402fd302a1efba6b26d11ed8395e"}
"target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/arm64/BeeHive.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBeeHive/CNLiveBeeHive/Classes/BeeHive/BeeHive.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/arm64/BeeHive.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBeeHive/CNLiveBeeHive/Classes/BeeHive/BeeHive.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveBeeHive/CNLiveBeeHive-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBeeHive/CNLiveBeeHive/Classes/BeeHive/BeeHive.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/module.modulemap","<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--generated-headers>","<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--phase0-copy-headers>","<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/arm64/BeeHive.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=CNLiveBeeHive","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/CNLiveBeeHive-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/CNLiveBeeHive-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/CNLiveBeeHive-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/CNLiveBeeHive-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveBeeHive/CNLiveBeeHive-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/arm64/BeeHive.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/arm64/BeeHive.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBeeHive/CNLiveBeeHive/Classes/BeeHive/BeeHive.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/arm64/BeeHive.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/arm64/BeeHive.d"],"deps-style":"makefile","signature":"cbaf1e3e229aa01f00430ca269fac23f"}
"target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/arm64/CNLiveBeeHive-dummy.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveBeeHive/CNLiveBeeHive-dummy.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/arm64/CNLiveBeeHive-dummy.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveBeeHive/CNLiveBeeHive-dummy.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveBeeHive/CNLiveBeeHive-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveBeeHive/CNLiveBeeHive-dummy.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/module.modulemap","<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--generated-headers>","<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--phase0-copy-headers>","<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/arm64/CNLiveBeeHive-dummy.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=CNLiveBeeHive","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/CNLiveBeeHive-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/CNLiveBeeHive-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/CNLiveBeeHive-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/CNLiveBeeHive-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveBeeHive/CNLiveBeeHive-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/arm64/CNLiveBeeHive-dummy.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/arm64/CNLiveBeeHive-dummy.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveBeeHive/CNLiveBeeHive-dummy.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/arm64/CNLiveBeeHive-dummy.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/arm64/CNLiveBeeHive-dummy.d"],"deps-style":"makefile","signature":"029c7b50e4c73c2cf461dde34cead247"}
"target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/arm64/CNLiveBeeHive_vers.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/DerivedSources/CNLiveBeeHive_vers.c normal arm64 c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/arm64/CNLiveBeeHive_vers.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/DerivedSources/CNLiveBeeHive_vers.c normal arm64 c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/DerivedSources/CNLiveBeeHive_vers.c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/module.modulemap","<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--generated-headers>","<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--phase0-copy-headers>","<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/arm64/CNLiveBeeHive_vers.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c","-target","arm64-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=CNLiveBeeHive","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Werror=deprecated-objc-isa-usage","-Werror=objc-root-class","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/CNLiveBeeHive-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/CNLiveBeeHive-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/CNLiveBeeHive-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/CNLiveBeeHive-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/arm64/CNLiveBeeHive_vers.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/arm64/CNLiveBeeHive_vers.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/DerivedSources/CNLiveBeeHive_vers.c","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/arm64/CNLiveBeeHive_vers.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/arm64/CNLiveBeeHive_vers.d"],"deps-style":"makefile","signature":"a0017070954e85f0a2c3286eb9d9b563"}
"target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/armv7/BHAnnotation.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBeeHive/CNLiveBeeHive/Classes/BeeHive/BHAnnotation.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/armv7/BHAnnotation.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBeeHive/CNLiveBeeHive/Classes/BeeHive/BHAnnotation.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveBeeHive/CNLiveBeeHive-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBeeHive/CNLiveBeeHive/Classes/BeeHive/BHAnnotation.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/module.modulemap","<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--generated-headers>","<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--phase0-copy-headers>","<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/armv7/BHAnnotation.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=CNLiveBeeHive","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/CNLiveBeeHive-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/CNLiveBeeHive-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/CNLiveBeeHive-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/CNLiveBeeHive-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveBeeHive/CNLiveBeeHive-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/armv7/BHAnnotation.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/armv7/BHAnnotation.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBeeHive/CNLiveBeeHive/Classes/BeeHive/BHAnnotation.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/armv7/BHAnnotation.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/armv7/BHAnnotation.d"],"deps-style":"makefile","signature":"2f0ed0c67c52a61bc576516a9b1e2006"}
"target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/armv7/BHAppDelegate.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBeeHive/CNLiveBeeHive/Classes/BeeHive/BHAppDelegate.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/armv7/BHAppDelegate.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBeeHive/CNLiveBeeHive/Classes/BeeHive/BHAppDelegate.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveBeeHive/CNLiveBeeHive-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBeeHive/CNLiveBeeHive/Classes/BeeHive/BHAppDelegate.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/module.modulemap","<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--generated-headers>","<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--phase0-copy-headers>","<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/armv7/BHAppDelegate.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=CNLiveBeeHive","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/CNLiveBeeHive-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/CNLiveBeeHive-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/CNLiveBeeHive-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/CNLiveBeeHive-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveBeeHive/CNLiveBeeHive-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/armv7/BHAppDelegate.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/armv7/BHAppDelegate.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBeeHive/CNLiveBeeHive/Classes/BeeHive/BHAppDelegate.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/armv7/BHAppDelegate.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/armv7/BHAppDelegate.d"],"deps-style":"makefile","signature":"780d866702e1e6144e48ae7e509fc507"}
"target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/armv7/BHConfig.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBeeHive/CNLiveBeeHive/Classes/BeeHive/BHConfig.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/armv7/BHConfig.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBeeHive/CNLiveBeeHive/Classes/BeeHive/BHConfig.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveBeeHive/CNLiveBeeHive-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBeeHive/CNLiveBeeHive/Classes/BeeHive/BHConfig.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/module.modulemap","<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--generated-headers>","<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--phase0-copy-headers>","<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/armv7/BHConfig.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=CNLiveBeeHive","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/CNLiveBeeHive-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/CNLiveBeeHive-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/CNLiveBeeHive-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/CNLiveBeeHive-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveBeeHive/CNLiveBeeHive-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/armv7/BHConfig.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/armv7/BHConfig.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBeeHive/CNLiveBeeHive/Classes/BeeHive/BHConfig.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/armv7/BHConfig.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/armv7/BHConfig.d"],"deps-style":"makefile","signature":"44de43118bbf653696da16fb52d146f2"}
"target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/armv7/BHContext.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBeeHive/CNLiveBeeHive/Classes/BeeHive/BHContext.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/armv7/BHContext.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBeeHive/CNLiveBeeHive/Classes/BeeHive/BHContext.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveBeeHive/CNLiveBeeHive-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBeeHive/CNLiveBeeHive/Classes/BeeHive/BHContext.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/module.modulemap","<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--generated-headers>","<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--phase0-copy-headers>","<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/armv7/BHContext.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=CNLiveBeeHive","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/CNLiveBeeHive-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/CNLiveBeeHive-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/CNLiveBeeHive-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/CNLiveBeeHive-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveBeeHive/CNLiveBeeHive-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/armv7/BHContext.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/armv7/BHContext.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBeeHive/CNLiveBeeHive/Classes/BeeHive/BHContext.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/armv7/BHContext.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/armv7/BHContext.d"],"deps-style":"makefile","signature":"794bf8fae0b89344f387e2ed4f7dfa2a"}
"target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/armv7/BHModuleManager.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBeeHive/CNLiveBeeHive/Classes/BeeHive/BHModuleManager.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/armv7/BHModuleManager.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBeeHive/CNLiveBeeHive/Classes/BeeHive/BHModuleManager.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveBeeHive/CNLiveBeeHive-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBeeHive/CNLiveBeeHive/Classes/BeeHive/BHModuleManager.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/module.modulemap","<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--generated-headers>","<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--phase0-copy-headers>","<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/armv7/BHModuleManager.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=CNLiveBeeHive","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/CNLiveBeeHive-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/CNLiveBeeHive-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/CNLiveBeeHive-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/CNLiveBeeHive-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveBeeHive/CNLiveBeeHive-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/armv7/BHModuleManager.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/armv7/BHModuleManager.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBeeHive/CNLiveBeeHive/Classes/BeeHive/BHModuleManager.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/armv7/BHModuleManager.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/armv7/BHModuleManager.d"],"deps-style":"makefile","signature":"16e1a6c6c918fd4382e2917a9dcefd31"}
"target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/armv7/BHRouter.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBeeHive/CNLiveBeeHive/Classes/BeeHive/BHRouter.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/armv7/BHRouter.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBeeHive/CNLiveBeeHive/Classes/BeeHive/BHRouter.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveBeeHive/CNLiveBeeHive-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBeeHive/CNLiveBeeHive/Classes/BeeHive/BHRouter.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/module.modulemap","<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--generated-headers>","<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--phase0-copy-headers>","<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/armv7/BHRouter.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=CNLiveBeeHive","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/CNLiveBeeHive-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/CNLiveBeeHive-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/CNLiveBeeHive-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/CNLiveBeeHive-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveBeeHive/CNLiveBeeHive-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/armv7/BHRouter.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/armv7/BHRouter.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBeeHive/CNLiveBeeHive/Classes/BeeHive/BHRouter.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/armv7/BHRouter.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/armv7/BHRouter.d"],"deps-style":"makefile","signature":"bf99c62c681b53a768494b855d1732ec"}
"target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/armv7/BHServiceManager.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBeeHive/CNLiveBeeHive/Classes/BeeHive/BHServiceManager.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/armv7/BHServiceManager.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBeeHive/CNLiveBeeHive/Classes/BeeHive/BHServiceManager.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveBeeHive/CNLiveBeeHive-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBeeHive/CNLiveBeeHive/Classes/BeeHive/BHServiceManager.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/module.modulemap","<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--generated-headers>","<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--phase0-copy-headers>","<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/armv7/BHServiceManager.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=CNLiveBeeHive","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/CNLiveBeeHive-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/CNLiveBeeHive-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/CNLiveBeeHive-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/CNLiveBeeHive-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveBeeHive/CNLiveBeeHive-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/armv7/BHServiceManager.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/armv7/BHServiceManager.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBeeHive/CNLiveBeeHive/Classes/BeeHive/BHServiceManager.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/armv7/BHServiceManager.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/armv7/BHServiceManager.d"],"deps-style":"makefile","signature":"b997a11b36f5c65a3c0e46f569fa94b4"}
"target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/armv7/BHTimeProfiler.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBeeHive/CNLiveBeeHive/Classes/BeeHive/BHTimeProfiler.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/armv7/BHTimeProfiler.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBeeHive/CNLiveBeeHive/Classes/BeeHive/BHTimeProfiler.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveBeeHive/CNLiveBeeHive-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBeeHive/CNLiveBeeHive/Classes/BeeHive/BHTimeProfiler.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/module.modulemap","<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--generated-headers>","<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--phase0-copy-headers>","<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/armv7/BHTimeProfiler.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=CNLiveBeeHive","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/CNLiveBeeHive-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/CNLiveBeeHive-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/CNLiveBeeHive-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/CNLiveBeeHive-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveBeeHive/CNLiveBeeHive-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/armv7/BHTimeProfiler.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/armv7/BHTimeProfiler.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBeeHive/CNLiveBeeHive/Classes/BeeHive/BHTimeProfiler.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/armv7/BHTimeProfiler.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/armv7/BHTimeProfiler.d"],"deps-style":"makefile","signature":"3a858ff77f074fad6876e57d6b274c4c"}
"target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/armv7/BHWatchDog.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBeeHive/CNLiveBeeHive/Classes/BeeHive/BHWatchDog.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/armv7/BHWatchDog.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBeeHive/CNLiveBeeHive/Classes/BeeHive/BHWatchDog.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveBeeHive/CNLiveBeeHive-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBeeHive/CNLiveBeeHive/Classes/BeeHive/BHWatchDog.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/module.modulemap","<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--generated-headers>","<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--phase0-copy-headers>","<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/armv7/BHWatchDog.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=CNLiveBeeHive","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/CNLiveBeeHive-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/CNLiveBeeHive-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/CNLiveBeeHive-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/CNLiveBeeHive-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveBeeHive/CNLiveBeeHive-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/armv7/BHWatchDog.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/armv7/BHWatchDog.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBeeHive/CNLiveBeeHive/Classes/BeeHive/BHWatchDog.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/armv7/BHWatchDog.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/armv7/BHWatchDog.d"],"deps-style":"makefile","signature":"d66d7c873aa84c39c9475196e53850e7"}
"target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/armv7/BeeHive.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBeeHive/CNLiveBeeHive/Classes/BeeHive/BeeHive.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/armv7/BeeHive.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBeeHive/CNLiveBeeHive/Classes/BeeHive/BeeHive.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveBeeHive/CNLiveBeeHive-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBeeHive/CNLiveBeeHive/Classes/BeeHive/BeeHive.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/module.modulemap","<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--generated-headers>","<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--phase0-copy-headers>","<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/armv7/BeeHive.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=CNLiveBeeHive","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/CNLiveBeeHive-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/CNLiveBeeHive-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/CNLiveBeeHive-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/CNLiveBeeHive-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveBeeHive/CNLiveBeeHive-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/armv7/BeeHive.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/armv7/BeeHive.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBeeHive/CNLiveBeeHive/Classes/BeeHive/BeeHive.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/armv7/BeeHive.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/armv7/BeeHive.d"],"deps-style":"makefile","signature":"991f17b770b636518452e65867f73604"}
"target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/armv7/CNLiveBeeHive-dummy.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveBeeHive/CNLiveBeeHive-dummy.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/armv7/CNLiveBeeHive-dummy.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveBeeHive/CNLiveBeeHive-dummy.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveBeeHive/CNLiveBeeHive-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveBeeHive/CNLiveBeeHive-dummy.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/module.modulemap","<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--generated-headers>","<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--phase0-copy-headers>","<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/armv7/CNLiveBeeHive-dummy.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=CNLiveBeeHive","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/CNLiveBeeHive-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/CNLiveBeeHive-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/CNLiveBeeHive-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/CNLiveBeeHive-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveBeeHive/CNLiveBeeHive-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/armv7/CNLiveBeeHive-dummy.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/armv7/CNLiveBeeHive-dummy.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveBeeHive/CNLiveBeeHive-dummy.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/armv7/CNLiveBeeHive-dummy.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/armv7/CNLiveBeeHive-dummy.d"],"deps-style":"makefile","signature":"df15f59437b186893f151c8c2116f484"}
"target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/armv7/CNLiveBeeHive_vers.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/DerivedSources/CNLiveBeeHive_vers.c normal armv7 c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/armv7/CNLiveBeeHive_vers.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/DerivedSources/CNLiveBeeHive_vers.c normal armv7 c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/DerivedSources/CNLiveBeeHive_vers.c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/module.modulemap","<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--generated-headers>","<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--phase0-copy-headers>","<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/armv7/CNLiveBeeHive_vers.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c","-target","armv7-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=CNLiveBeeHive","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Werror=deprecated-objc-isa-usage","-Werror=objc-root-class","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/CNLiveBeeHive-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/CNLiveBeeHive-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/CNLiveBeeHive-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/CNLiveBeeHive-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/armv7/CNLiveBeeHive_vers.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/armv7/CNLiveBeeHive_vers.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/DerivedSources/CNLiveBeeHive_vers.c","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/armv7/CNLiveBeeHive_vers.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/armv7/CNLiveBeeHive_vers.d"],"deps-style":"makefile","signature":"3c3bd8b4f1a1331e5082c3a23db9f9d5"}
"target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBeeHive/CNLiveBeeHive/Classes/BeeHive/BHAnnotation.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive/CNLiveBeeHive.framework/Headers/BHAnnotation.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBeeHive/CNLiveBeeHive/Classes/BeeHive/BHAnnotation.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive/CNLiveBeeHive.framework/Headers/BHAnnotation.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBeeHive/CNLiveBeeHive/Classes/BeeHive/BHAnnotation.h/","<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--HeadermapTaskProducer>","<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive/CNLiveBeeHive.framework/Headers/BHAnnotation.h"]}
"target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBeeHive/CNLiveBeeHive/Classes/BeeHive/BHAppDelegate.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive/CNLiveBeeHive.framework/Headers/BHAppDelegate.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBeeHive/CNLiveBeeHive/Classes/BeeHive/BHAppDelegate.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive/CNLiveBeeHive.framework/Headers/BHAppDelegate.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBeeHive/CNLiveBeeHive/Classes/BeeHive/BHAppDelegate.h/","<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--HeadermapTaskProducer>","<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive/CNLiveBeeHive.framework/Headers/BHAppDelegate.h"]}
"target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBeeHive/CNLiveBeeHive/Classes/BeeHive/BHCommon.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive/CNLiveBeeHive.framework/Headers/BHCommon.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBeeHive/CNLiveBeeHive/Classes/BeeHive/BHCommon.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive/CNLiveBeeHive.framework/Headers/BHCommon.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBeeHive/CNLiveBeeHive/Classes/BeeHive/BHCommon.h/","<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--HeadermapTaskProducer>","<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive/CNLiveBeeHive.framework/Headers/BHCommon.h"]}
"target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBeeHive/CNLiveBeeHive/Classes/BeeHive/BHConfig.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive/CNLiveBeeHive.framework/Headers/BHConfig.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBeeHive/CNLiveBeeHive/Classes/BeeHive/BHConfig.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive/CNLiveBeeHive.framework/Headers/BHConfig.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBeeHive/CNLiveBeeHive/Classes/BeeHive/BHConfig.h/","<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--HeadermapTaskProducer>","<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive/CNLiveBeeHive.framework/Headers/BHConfig.h"]}
"target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBeeHive/CNLiveBeeHive/Classes/BeeHive/BHContext.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive/CNLiveBeeHive.framework/Headers/BHContext.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBeeHive/CNLiveBeeHive/Classes/BeeHive/BHContext.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive/CNLiveBeeHive.framework/Headers/BHContext.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBeeHive/CNLiveBeeHive/Classes/BeeHive/BHContext.h/","<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--HeadermapTaskProducer>","<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive/CNLiveBeeHive.framework/Headers/BHContext.h"]}
"target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBeeHive/CNLiveBeeHive/Classes/BeeHive/BHDefines.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive/CNLiveBeeHive.framework/Headers/BHDefines.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBeeHive/CNLiveBeeHive/Classes/BeeHive/BHDefines.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive/CNLiveBeeHive.framework/Headers/BHDefines.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBeeHive/CNLiveBeeHive/Classes/BeeHive/BHDefines.h/","<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--HeadermapTaskProducer>","<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive/CNLiveBeeHive.framework/Headers/BHDefines.h"]}
"target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBeeHive/CNLiveBeeHive/Classes/BeeHive/BHModuleManager.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive/CNLiveBeeHive.framework/Headers/BHModuleManager.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBeeHive/CNLiveBeeHive/Classes/BeeHive/BHModuleManager.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive/CNLiveBeeHive.framework/Headers/BHModuleManager.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBeeHive/CNLiveBeeHive/Classes/BeeHive/BHModuleManager.h/","<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--HeadermapTaskProducer>","<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive/CNLiveBeeHive.framework/Headers/BHModuleManager.h"]}
"target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBeeHive/CNLiveBeeHive/Classes/BeeHive/BHModuleProtocol.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive/CNLiveBeeHive.framework/Headers/BHModuleProtocol.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBeeHive/CNLiveBeeHive/Classes/BeeHive/BHModuleProtocol.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive/CNLiveBeeHive.framework/Headers/BHModuleProtocol.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBeeHive/CNLiveBeeHive/Classes/BeeHive/BHModuleProtocol.h/","<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--HeadermapTaskProducer>","<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive/CNLiveBeeHive.framework/Headers/BHModuleProtocol.h"]}
"target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBeeHive/CNLiveBeeHive/Classes/BeeHive/BHRouter.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive/CNLiveBeeHive.framework/Headers/BHRouter.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBeeHive/CNLiveBeeHive/Classes/BeeHive/BHRouter.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive/CNLiveBeeHive.framework/Headers/BHRouter.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBeeHive/CNLiveBeeHive/Classes/BeeHive/BHRouter.h/","<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--HeadermapTaskProducer>","<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive/CNLiveBeeHive.framework/Headers/BHRouter.h"]}
"target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBeeHive/CNLiveBeeHive/Classes/BeeHive/BHServiceManager.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive/CNLiveBeeHive.framework/Headers/BHServiceManager.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBeeHive/CNLiveBeeHive/Classes/BeeHive/BHServiceManager.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive/CNLiveBeeHive.framework/Headers/BHServiceManager.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBeeHive/CNLiveBeeHive/Classes/BeeHive/BHServiceManager.h/","<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--HeadermapTaskProducer>","<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive/CNLiveBeeHive.framework/Headers/BHServiceManager.h"]}
"target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBeeHive/CNLiveBeeHive/Classes/BeeHive/BHServiceProtocol.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive/CNLiveBeeHive.framework/Headers/BHServiceProtocol.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBeeHive/CNLiveBeeHive/Classes/BeeHive/BHServiceProtocol.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive/CNLiveBeeHive.framework/Headers/BHServiceProtocol.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBeeHive/CNLiveBeeHive/Classes/BeeHive/BHServiceProtocol.h/","<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--HeadermapTaskProducer>","<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive/CNLiveBeeHive.framework/Headers/BHServiceProtocol.h"]}
"target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBeeHive/CNLiveBeeHive/Classes/BeeHive/BHTimeProfiler.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive/CNLiveBeeHive.framework/Headers/BHTimeProfiler.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBeeHive/CNLiveBeeHive/Classes/BeeHive/BHTimeProfiler.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive/CNLiveBeeHive.framework/Headers/BHTimeProfiler.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBeeHive/CNLiveBeeHive/Classes/BeeHive/BHTimeProfiler.h/","<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--HeadermapTaskProducer>","<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive/CNLiveBeeHive.framework/Headers/BHTimeProfiler.h"]}
"target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBeeHive/CNLiveBeeHive/Classes/BeeHive/BHWatchDog.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive/CNLiveBeeHive.framework/Headers/BHWatchDog.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBeeHive/CNLiveBeeHive/Classes/BeeHive/BHWatchDog.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive/CNLiveBeeHive.framework/Headers/BHWatchDog.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBeeHive/CNLiveBeeHive/Classes/BeeHive/BHWatchDog.h/","<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--HeadermapTaskProducer>","<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive/CNLiveBeeHive.framework/Headers/BHWatchDog.h"]}
"target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBeeHive/CNLiveBeeHive/Classes/BeeHive/BeeHive.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive/CNLiveBeeHive.framework/Headers/BeeHive.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBeeHive/CNLiveBeeHive/Classes/BeeHive/BeeHive.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive/CNLiveBeeHive.framework/Headers/BeeHive.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBeeHive/CNLiveBeeHive/Classes/BeeHive/BeeHive.h/","<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--HeadermapTaskProducer>","<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive/CNLiveBeeHive.framework/Headers/BeeHive.h"]}
"target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBeeHive/CNLiveBeeHive/Classes/CNLiveBeeHive.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive/CNLiveBeeHive.framework/Headers/CNLiveBeeHive.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBeeHive/CNLiveBeeHive/Classes/CNLiveBeeHive.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive/CNLiveBeeHive.framework/Headers/CNLiveBeeHive.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBeeHive/CNLiveBeeHive/Classes/CNLiveBeeHive.h/","<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--HeadermapTaskProducer>","<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive/CNLiveBeeHive.framework/Headers/CNLiveBeeHive.h"]}
"target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveBeeHive/CNLiveBeeHive-umbrella.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive/CNLiveBeeHive.framework/Headers/CNLiveBeeHive-umbrella.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveBeeHive/CNLiveBeeHive-umbrella.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive/CNLiveBeeHive.framework/Headers/CNLiveBeeHive-umbrella.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveBeeHive/CNLiveBeeHive-umbrella.h/","<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--HeadermapTaskProducer>","<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive/CNLiveBeeHive.framework/Headers/CNLiveBeeHive-umbrella.h"]}
"target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f-:Debug:CpResource /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive/CNLiveBeeHive.bundle /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive/CNLiveBeeHive.framework/CNLiveBeeHive.bundle": {"tool":"file-copy","description":"CpResource /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive/CNLiveBeeHive.bundle /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive/CNLiveBeeHive.framework/CNLiveBeeHive.bundle","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive/CNLiveBeeHive.bundle/","<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--phase1-compile-sources>","<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive/CNLiveBeeHive.framework/CNLiveBeeHive.bundle"]}
"target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f-:Debug:CreateUniversalBinary /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive/CNLiveBeeHive.framework/CNLiveBeeHive normal armv7 arm64": {"tool":"shell","description":"CreateUniversalBinary /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive/CNLiveBeeHive.framework/CNLiveBeeHive normal armv7 arm64","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/armv7/Binary/CNLiveBeeHive","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/arm64/Binary/CNLiveBeeHive","<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--phase0-copy-headers>","<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive/CNLiveBeeHive.framework/CNLiveBeeHive","<Linked Binary /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive/CNLiveBeeHive.framework/CNLiveBeeHive>"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/lipo","-create","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/armv7/Binary/CNLiveBeeHive","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/arm64/Binary/CNLiveBeeHive","-output","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive/CNLiveBeeHive.framework/CNLiveBeeHive"],"env":{},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","signature":"c761417edc4a1be959c04ab4f00e12bc"}
"target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f-:Debug:Ditto /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/module.modulemap /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive/CNLiveBeeHive.framework/Modules/module.modulemap": {"tool":"file-copy","description":"Ditto /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/module.modulemap /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive/CNLiveBeeHive.framework/Modules/module.modulemap","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/module.modulemap/","<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--HeadermapTaskProducer>","<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive/CNLiveBeeHive.framework/Modules/module.modulemap"]}
"target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f-:Debug:Ld /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/arm64/Binary/CNLiveBeeHive normal arm64": {"tool":"shell","description":"Ld /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/arm64/Binary/CNLiveBeeHive normal arm64","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/arm64/BeeHive.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/arm64/BHAnnotation.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/arm64/BHAppDelegate.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/arm64/BHConfig.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/arm64/BHContext.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/arm64/BHModuleManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/arm64/BHRouter.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/arm64/BHServiceManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/arm64/BHTimeProfiler.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/arm64/BHWatchDog.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/arm64/CNLiveBeeHive-dummy.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/arm64/CNLiveBeeHive_vers.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/arm64/CNLiveBeeHive.LinkFileList","<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--phase0-copy-headers>","<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/arm64/Binary/CNLiveBeeHive"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-target","arm64-apple-ios9.0","-dynamiclib","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-L/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive","-filelist","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/arm64/CNLiveBeeHive.LinkFileList","-install_name","@rpath/CNLiveBeeHive.framework/CNLiveBeeHive","-Xlinker","-rpath","-Xlinker","@executable_path/Frameworks","-Xlinker","-rpath","-Xlinker","@loader_path/Frameworks","-dead_strip","-Xlinker","-object_path_lto","-Xlinker","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/arm64/CNLiveBeeHive_lto.o","-Xlinker","-export_dynamic","-Xlinker","-no_deduplicate","-fembed-bitcode-marker","-fobjc-arc","-fobjc-link-runtime","-framework","Foundation","-compatibility_version","1","-current_version","1","-Xlinker","-dependency_info","-Xlinker","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/arm64/CNLiveBeeHive_dependency_info.dat","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/arm64/Binary/CNLiveBeeHive"],"env":{},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/arm64/CNLiveBeeHive_dependency_info.dat"],"deps-style":"dependency-info","signature":"bfa7a93d996a6007f3900b4e6ff76b77"}
"target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f-:Debug:Ld /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/armv7/Binary/CNLiveBeeHive normal armv7": {"tool":"shell","description":"Ld /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/armv7/Binary/CNLiveBeeHive normal armv7","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/armv7/BeeHive.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/armv7/BHAnnotation.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/armv7/BHAppDelegate.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/armv7/BHConfig.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/armv7/BHContext.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/armv7/BHModuleManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/armv7/BHRouter.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/armv7/BHServiceManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/armv7/BHTimeProfiler.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/armv7/BHWatchDog.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/armv7/CNLiveBeeHive-dummy.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/armv7/CNLiveBeeHive_vers.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/armv7/CNLiveBeeHive.LinkFileList","<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--phase0-copy-headers>","<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/armv7/Binary/CNLiveBeeHive"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-target","armv7-apple-ios9.0","-dynamiclib","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-L/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive","-filelist","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/armv7/CNLiveBeeHive.LinkFileList","-install_name","@rpath/CNLiveBeeHive.framework/CNLiveBeeHive","-Xlinker","-rpath","-Xlinker","@executable_path/Frameworks","-Xlinker","-rpath","-Xlinker","@loader_path/Frameworks","-dead_strip","-Xlinker","-object_path_lto","-Xlinker","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/armv7/CNLiveBeeHive_lto.o","-Xlinker","-export_dynamic","-Xlinker","-no_deduplicate","-fembed-bitcode-marker","-fobjc-arc","-fobjc-link-runtime","-framework","Foundation","-compatibility_version","1","-current_version","1","-Xlinker","-dependency_info","-Xlinker","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/armv7/CNLiveBeeHive_dependency_info.dat","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/armv7/Binary/CNLiveBeeHive"],"env":{},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/armv7/CNLiveBeeHive_dependency_info.dat"],"deps-style":"dependency-info","signature":"fa4d4f0e14f3dfdd6a56b29dc5370f22"}
"target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f-:Debug:MkDir /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive/CNLiveBeeHive.framework": {"tool":"mkdir","description":"MkDir /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive/CNLiveBeeHive.framework","inputs":["<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--start>","<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive/CNLiveBeeHive.framework","<MkDir /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive/CNLiveBeeHive.framework>"]}
"target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f-:Debug:MkDir /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive/CNLiveBeeHive.framework/Headers": {"tool":"mkdir","description":"MkDir /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive/CNLiveBeeHive.framework/Headers","inputs":["<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--start>","<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive/CNLiveBeeHive.framework/Headers","<MkDir /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive/CNLiveBeeHive.framework/Headers>"]}
"target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f-:Debug:ProcessInfoPlistFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive/CNLiveBeeHive.framework/Info.plist /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveBeeHive/CNLiveBeeHive-Info.plist": {"tool":"info-plist-processor","description":"ProcessInfoPlistFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive/CNLiveBeeHive.framework/Info.plist /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveBeeHive/CNLiveBeeHive-Info.plist","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveBeeHive/CNLiveBeeHive-Info.plist","<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--HeadermapTaskProducer>","<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive/CNLiveBeeHive.framework/Info.plist"]}
"target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f-:Debug:Touch /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive/CNLiveBeeHive.framework": {"tool":"shell","description":"Touch /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive/CNLiveBeeHive.framework","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive/CNLiveBeeHive.framework","<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--Barrier-RegisterExecutionPolicyException>","<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--entry>"],"outputs":["<Touch /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive/CNLiveBeeHive.framework>"],"args":["/usr/bin/touch","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive/CNLiveBeeHive.framework"],"env":{},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","signature":"cb87f85a27f297d369d5546396a4abcd"}
"target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/CNLiveBeeHive-all-non-framework-target-headers.hmap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/CNLiveBeeHive-all-non-framework-target-headers.hmap","inputs":["<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--GeneratedFilesTaskProducer>","<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/CNLiveBeeHive-all-non-framework-target-headers.hmap"]}
"target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/CNLiveBeeHive-all-target-headers.hmap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/CNLiveBeeHive-all-target-headers.hmap","inputs":["<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--GeneratedFilesTaskProducer>","<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/CNLiveBeeHive-all-target-headers.hmap"]}
"target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/CNLiveBeeHive-generated-files.hmap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/CNLiveBeeHive-generated-files.hmap","inputs":["<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--GeneratedFilesTaskProducer>","<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/CNLiveBeeHive-generated-files.hmap"]}
"target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/CNLiveBeeHive-own-target-headers.hmap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/CNLiveBeeHive-own-target-headers.hmap","inputs":["<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--GeneratedFilesTaskProducer>","<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/CNLiveBeeHive-own-target-headers.hmap"]}
"target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/CNLiveBeeHive-project-headers.hmap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/CNLiveBeeHive-project-headers.hmap","inputs":["<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--GeneratedFilesTaskProducer>","<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/CNLiveBeeHive-project-headers.hmap"]}
"target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/CNLiveBeeHive.hmap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/CNLiveBeeHive.hmap","inputs":["<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--GeneratedFilesTaskProducer>","<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/CNLiveBeeHive.hmap"]}
"target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/DerivedSources/CNLiveBeeHive_vers.c": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/DerivedSources/CNLiveBeeHive_vers.c","inputs":["<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--phase0-copy-headers>","<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/DerivedSources/CNLiveBeeHive_vers.c"]}
"target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/arm64/CNLiveBeeHive.LinkFileList": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/arm64/CNLiveBeeHive.LinkFileList","inputs":["<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--phase0-copy-headers>","<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/arm64/CNLiveBeeHive.LinkFileList"]}
"target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/armv7/CNLiveBeeHive.LinkFileList": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/armv7/CNLiveBeeHive.LinkFileList","inputs":["<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--phase0-copy-headers>","<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/Objects-normal/armv7/CNLiveBeeHive.LinkFileList"]}
"target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/all-product-headers.yaml": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/all-product-headers.yaml","inputs":["<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--GeneratedFilesTaskProducer>","<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/all-product-headers.yaml"]}
"target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/module.modulemap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/module.modulemap","inputs":["<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--HeadermapTaskProducer>","<target-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8efa6e5b70502c6d2443c6ee5e774a821f--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive.build/module.modulemap"]}
"target-CNLiveBeeHive-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8eb19d8bc2256b7e726f7d728ddfaed39d-:Debug:CpResource /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBeeHive/CNLiveBeeHive/Assets/BeeHive.bundle /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive/CNLiveBeeHive.bundle/BeeHive.bundle": {"tool":"file-copy","description":"CpResource /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBeeHive/CNLiveBeeHive/Assets/BeeHive.bundle /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive/CNLiveBeeHive.bundle/BeeHive.bundle","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveBeeHive/CNLiveBeeHive/Assets/BeeHive.bundle/","<target-CNLiveBeeHive-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8eb19d8bc2256b7e726f7d728ddfaed39d--phase0-compile-sources>","<target-CNLiveBeeHive-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8eb19d8bc2256b7e726f7d728ddfaed39d--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive/CNLiveBeeHive.bundle/BeeHive.bundle"]}
"target-CNLiveBeeHive-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8eb19d8bc2256b7e726f7d728ddfaed39d-:Debug:MkDir /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive/CNLiveBeeHive.bundle": {"tool":"mkdir","description":"MkDir /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive/CNLiveBeeHive.bundle","inputs":["<target-CNLiveBeeHive-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8eb19d8bc2256b7e726f7d728ddfaed39d--start>","<target-CNLiveBeeHive-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8eb19d8bc2256b7e726f7d728ddfaed39d--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive/CNLiveBeeHive.bundle","<MkDir /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive/CNLiveBeeHive.bundle>"]}
"target-CNLiveBeeHive-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8eb19d8bc2256b7e726f7d728ddfaed39d-:Debug:ProcessInfoPlistFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive/CNLiveBeeHive.bundle/Info.plist /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveBeeHive/ResourceBundle-CNLiveBeeHive-CNLiveBeeHive-Info.plist": {"tool":"info-plist-processor","description":"ProcessInfoPlistFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive/CNLiveBeeHive.bundle/Info.plist /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveBeeHive/ResourceBundle-CNLiveBeeHive-CNLiveBeeHive-Info.plist","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveBeeHive/ResourceBundle-CNLiveBeeHive-CNLiveBeeHive-Info.plist","<target-CNLiveBeeHive-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8eb19d8bc2256b7e726f7d728ddfaed39d--HeadermapTaskProducer>","<target-CNLiveBeeHive-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8eb19d8bc2256b7e726f7d728ddfaed39d--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive/CNLiveBeeHive.bundle/Info.plist"]}
"target-CNLiveBeeHive-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8eb19d8bc2256b7e726f7d728ddfaed39d-:Debug:Touch /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive/CNLiveBeeHive.bundle": {"tool":"shell","description":"Touch /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive/CNLiveBeeHive.bundle","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive/CNLiveBeeHive.bundle","<target-CNLiveBeeHive-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8eb19d8bc2256b7e726f7d728ddfaed39d--Barrier-RegisterExecutionPolicyException>","<target-CNLiveBeeHive-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8eb19d8bc2256b7e726f7d728ddfaed39d--entry>"],"outputs":["<Touch /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive/CNLiveBeeHive.bundle>"],"args":["/usr/bin/touch","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive/CNLiveBeeHive.bundle"],"env":{},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","signature":"a00d3de9413cd5da2d9a5093e1a4a1a5"}
"target-CNLiveBeeHive-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8eb19d8bc2256b7e726f7d728ddfaed39d-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive-CNLiveBeeHive.build/CNLiveBeeHive-all-non-framework-target-headers.hmap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive-CNLiveBeeHive.build/CNLiveBeeHive-all-non-framework-target-headers.hmap","inputs":["<target-CNLiveBeeHive-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8eb19d8bc2256b7e726f7d728ddfaed39d--GeneratedFilesTaskProducer>","<target-CNLiveBeeHive-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8eb19d8bc2256b7e726f7d728ddfaed39d--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive-CNLiveBeeHive.build/CNLiveBeeHive-all-non-framework-target-headers.hmap"]}
"target-CNLiveBeeHive-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8eb19d8bc2256b7e726f7d728ddfaed39d-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive-CNLiveBeeHive.build/CNLiveBeeHive-all-target-headers.hmap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive-CNLiveBeeHive.build/CNLiveBeeHive-all-target-headers.hmap","inputs":["<target-CNLiveBeeHive-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8eb19d8bc2256b7e726f7d728ddfaed39d--GeneratedFilesTaskProducer>","<target-CNLiveBeeHive-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8eb19d8bc2256b7e726f7d728ddfaed39d--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive-CNLiveBeeHive.build/CNLiveBeeHive-all-target-headers.hmap"]}
"target-CNLiveBeeHive-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8eb19d8bc2256b7e726f7d728ddfaed39d-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive-CNLiveBeeHive.build/CNLiveBeeHive-generated-files.hmap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive-CNLiveBeeHive.build/CNLiveBeeHive-generated-files.hmap","inputs":["<target-CNLiveBeeHive-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8eb19d8bc2256b7e726f7d728ddfaed39d--GeneratedFilesTaskProducer>","<target-CNLiveBeeHive-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8eb19d8bc2256b7e726f7d728ddfaed39d--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive-CNLiveBeeHive.build/CNLiveBeeHive-generated-files.hmap"]}
"target-CNLiveBeeHive-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8eb19d8bc2256b7e726f7d728ddfaed39d-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive-CNLiveBeeHive.build/CNLiveBeeHive-own-target-headers.hmap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive-CNLiveBeeHive.build/CNLiveBeeHive-own-target-headers.hmap","inputs":["<target-CNLiveBeeHive-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8eb19d8bc2256b7e726f7d728ddfaed39d--GeneratedFilesTaskProducer>","<target-CNLiveBeeHive-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8eb19d8bc2256b7e726f7d728ddfaed39d--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive-CNLiveBeeHive.build/CNLiveBeeHive-own-target-headers.hmap"]}
"target-CNLiveBeeHive-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8eb19d8bc2256b7e726f7d728ddfaed39d-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive-CNLiveBeeHive.build/CNLiveBeeHive-project-headers.hmap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive-CNLiveBeeHive.build/CNLiveBeeHive-project-headers.hmap","inputs":["<target-CNLiveBeeHive-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8eb19d8bc2256b7e726f7d728ddfaed39d--GeneratedFilesTaskProducer>","<target-CNLiveBeeHive-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8eb19d8bc2256b7e726f7d728ddfaed39d--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive-CNLiveBeeHive.build/CNLiveBeeHive-project-headers.hmap"]}
"target-CNLiveBeeHive-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8eb19d8bc2256b7e726f7d728ddfaed39d-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive-CNLiveBeeHive.build/CNLiveBeeHive.hmap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive-CNLiveBeeHive.build/CNLiveBeeHive.hmap","inputs":["<target-CNLiveBeeHive-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8eb19d8bc2256b7e726f7d728ddfaed39d--GeneratedFilesTaskProducer>","<target-CNLiveBeeHive-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8eb19d8bc2256b7e726f7d728ddfaed39d--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive-CNLiveBeeHive.build/CNLiveBeeHive.hmap"]}
"target-CNLiveBeeHive-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8eb19d8bc2256b7e726f7d728ddfaed39d-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive-CNLiveBeeHive.build/all-product-headers.yaml": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive-CNLiveBeeHive.build/all-product-headers.yaml","inputs":["<target-CNLiveBeeHive-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8eb19d8bc2256b7e726f7d728ddfaed39d--GeneratedFilesTaskProducer>","<target-CNLiveBeeHive-CNLiveBeeHive-285b96a559574e49fe0e1a40c03a5a8eb19d8bc2256b7e726f7d728ddfaed39d--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveBeeHive-CNLiveBeeHive.build/all-product-headers.yaml"]}
"target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/Objects-normal/arm64/CNCommonListViewController.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveCommonClass/CNLiveCommonClass/Classes/CNCommonListViewController.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/Objects-normal/arm64/CNCommonListViewController.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveCommonClass/CNLiveCommonClass/Classes/CNCommonListViewController.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveCommonClass/CNLiveCommonClass-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveCommonClass/CNLiveCommonClass/Classes/CNCommonListViewController.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/module.modulemap","<target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9--generated-headers>","<target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9--phase0-copy-headers>","<target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/Objects-normal/arm64/CNCommonListViewController.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=CNLiveCommonClass","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/CNLiveCommonClass-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/CNLiveCommonClass-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/CNLiveCommonClass-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/CNLiveCommonClass-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveCommonClass/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveCommonClass","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveTripartiteManagement","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveCommonClass/CNLiveCommonClass-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/Objects-normal/arm64/CNCommonListViewController.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/Objects-normal/arm64/CNCommonListViewController.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveCommonClass/CNLiveCommonClass/Classes/CNCommonListViewController.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/Objects-normal/arm64/CNCommonListViewController.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/Objects-normal/arm64/CNCommonListViewController.d"],"deps-style":"makefile","signature":"0c659906770f00321d7b5090f6ef9c13"}
"target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/Objects-normal/arm64/CNCommonTableViewController.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveCommonClass/CNLiveCommonClass/Classes/CNCommonTableViewController.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/Objects-normal/arm64/CNCommonTableViewController.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveCommonClass/CNLiveCommonClass/Classes/CNCommonTableViewController.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveCommonClass/CNLiveCommonClass-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveCommonClass/CNLiveCommonClass/Classes/CNCommonTableViewController.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/module.modulemap","<target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9--generated-headers>","<target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9--phase0-copy-headers>","<target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/Objects-normal/arm64/CNCommonTableViewController.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=CNLiveCommonClass","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/CNLiveCommonClass-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/CNLiveCommonClass-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/CNLiveCommonClass-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/CNLiveCommonClass-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveCommonClass/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveCommonClass","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveTripartiteManagement","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveCommonClass/CNLiveCommonClass-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/Objects-normal/arm64/CNCommonTableViewController.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/Objects-normal/arm64/CNCommonTableViewController.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveCommonClass/CNLiveCommonClass/Classes/CNCommonTableViewController.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/Objects-normal/arm64/CNCommonTableViewController.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/Objects-normal/arm64/CNCommonTableViewController.d"],"deps-style":"makefile","signature":"c35071719a717daed721f2c9eac5122b"}
"target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/Objects-normal/arm64/CNCommonView.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveCommonClass/CNLiveCommonClass/Classes/CNCommonView.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/Objects-normal/arm64/CNCommonView.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveCommonClass/CNLiveCommonClass/Classes/CNCommonView.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveCommonClass/CNLiveCommonClass-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveCommonClass/CNLiveCommonClass/Classes/CNCommonView.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/module.modulemap","<target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9--generated-headers>","<target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9--phase0-copy-headers>","<target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/Objects-normal/arm64/CNCommonView.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=CNLiveCommonClass","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/CNLiveCommonClass-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/CNLiveCommonClass-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/CNLiveCommonClass-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/CNLiveCommonClass-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveCommonClass/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveCommonClass","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveTripartiteManagement","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveCommonClass/CNLiveCommonClass-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/Objects-normal/arm64/CNCommonView.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/Objects-normal/arm64/CNCommonView.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveCommonClass/CNLiveCommonClass/Classes/CNCommonView.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/Objects-normal/arm64/CNCommonView.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/Objects-normal/arm64/CNCommonView.d"],"deps-style":"makefile","signature":"84ba2f8779b75c5a3d8747f5af7553eb"}
"target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/Objects-normal/arm64/CNCommonViewController.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveCommonClass/CNLiveCommonClass/Classes/CNCommonViewController.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/Objects-normal/arm64/CNCommonViewController.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveCommonClass/CNLiveCommonClass/Classes/CNCommonViewController.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveCommonClass/CNLiveCommonClass-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveCommonClass/CNLiveCommonClass/Classes/CNCommonViewController.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/module.modulemap","<target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9--generated-headers>","<target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9--phase0-copy-headers>","<target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/Objects-normal/arm64/CNCommonViewController.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=CNLiveCommonClass","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/CNLiveCommonClass-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/CNLiveCommonClass-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/CNLiveCommonClass-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/CNLiveCommonClass-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveCommonClass/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveCommonClass","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveTripartiteManagement","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveCommonClass/CNLiveCommonClass-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/Objects-normal/arm64/CNCommonViewController.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/Objects-normal/arm64/CNCommonViewController.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveCommonClass/CNLiveCommonClass/Classes/CNCommonViewController.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/Objects-normal/arm64/CNCommonViewController.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/Objects-normal/arm64/CNCommonViewController.d"],"deps-style":"makefile","signature":"f55242dc77fc25ab3e0f1b1a715e7bdf"}
"target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/Objects-normal/arm64/CNLiveCommonClass-dummy.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveCommonClass/CNLiveCommonClass-dummy.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/Objects-normal/arm64/CNLiveCommonClass-dummy.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveCommonClass/CNLiveCommonClass-dummy.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveCommonClass/CNLiveCommonClass-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveCommonClass/CNLiveCommonClass-dummy.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/module.modulemap","<target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9--generated-headers>","<target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9--phase0-copy-headers>","<target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/Objects-normal/arm64/CNLiveCommonClass-dummy.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=CNLiveCommonClass","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/CNLiveCommonClass-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/CNLiveCommonClass-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/CNLiveCommonClass-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/CNLiveCommonClass-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveCommonClass/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveCommonClass","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveTripartiteManagement","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveCommonClass/CNLiveCommonClass-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/Objects-normal/arm64/CNLiveCommonClass-dummy.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/Objects-normal/arm64/CNLiveCommonClass-dummy.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveCommonClass/CNLiveCommonClass-dummy.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/Objects-normal/arm64/CNLiveCommonClass-dummy.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/Objects-normal/arm64/CNLiveCommonClass-dummy.d"],"deps-style":"makefile","signature":"f5e513292bf807db91dd2d581d014c8a"}
"target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/Objects-normal/arm64/CNLiveCommonClass_vers.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/DerivedSources/CNLiveCommonClass_vers.c normal arm64 c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/Objects-normal/arm64/CNLiveCommonClass_vers.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/DerivedSources/CNLiveCommonClass_vers.c normal arm64 c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/DerivedSources/CNLiveCommonClass_vers.c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/module.modulemap","<target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9--generated-headers>","<target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9--phase0-copy-headers>","<target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/Objects-normal/arm64/CNLiveCommonClass_vers.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c","-target","arm64-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=CNLiveCommonClass","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Werror=deprecated-objc-isa-usage","-Werror=objc-root-class","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/CNLiveCommonClass-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/CNLiveCommonClass-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/CNLiveCommonClass-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/CNLiveCommonClass-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveCommonClass/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveCommonClass","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveTripartiteManagement","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/Objects-normal/arm64/CNLiveCommonClass_vers.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/Objects-normal/arm64/CNLiveCommonClass_vers.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/DerivedSources/CNLiveCommonClass_vers.c","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/Objects-normal/arm64/CNLiveCommonClass_vers.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/Objects-normal/arm64/CNLiveCommonClass_vers.d"],"deps-style":"makefile","signature":"cbb224e9ae9b127e9fc3a208eb09a407"}
"target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/Objects-normal/arm64/CNThemeManager.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveCommonClass/CNLiveCommonClass/Classes/CNThemeManager.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/Objects-normal/arm64/CNThemeManager.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveCommonClass/CNLiveCommonClass/Classes/CNThemeManager.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveCommonClass/CNLiveCommonClass-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveCommonClass/CNLiveCommonClass/Classes/CNThemeManager.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/module.modulemap","<target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9--generated-headers>","<target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9--phase0-copy-headers>","<target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/Objects-normal/arm64/CNThemeManager.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=CNLiveCommonClass","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/CNLiveCommonClass-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/CNLiveCommonClass-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/CNLiveCommonClass-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/CNLiveCommonClass-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveCommonClass/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveCommonClass","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveTripartiteManagement","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveCommonClass/CNLiveCommonClass-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/Objects-normal/arm64/CNThemeManager.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/Objects-normal/arm64/CNThemeManager.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveCommonClass/CNLiveCommonClass/Classes/CNThemeManager.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/Objects-normal/arm64/CNThemeManager.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/Objects-normal/arm64/CNThemeManager.d"],"deps-style":"makefile","signature":"ba7b2dd883128e2817718df19ae600d0"}
"target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/Objects-normal/armv7/CNCommonListViewController.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveCommonClass/CNLiveCommonClass/Classes/CNCommonListViewController.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/Objects-normal/armv7/CNCommonListViewController.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveCommonClass/CNLiveCommonClass/Classes/CNCommonListViewController.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveCommonClass/CNLiveCommonClass-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveCommonClass/CNLiveCommonClass/Classes/CNCommonListViewController.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/module.modulemap","<target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9--generated-headers>","<target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9--phase0-copy-headers>","<target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/Objects-normal/armv7/CNCommonListViewController.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=CNLiveCommonClass","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/CNLiveCommonClass-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/CNLiveCommonClass-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/CNLiveCommonClass-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/CNLiveCommonClass-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveCommonClass/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveCommonClass","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveTripartiteManagement","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveCommonClass/CNLiveCommonClass-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/Objects-normal/armv7/CNCommonListViewController.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/Objects-normal/armv7/CNCommonListViewController.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveCommonClass/CNLiveCommonClass/Classes/CNCommonListViewController.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/Objects-normal/armv7/CNCommonListViewController.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/Objects-normal/armv7/CNCommonListViewController.d"],"deps-style":"makefile","signature":"2636913cdeda09489fc6aa76e3b0f48c"}
"target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/Objects-normal/armv7/CNCommonTableViewController.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveCommonClass/CNLiveCommonClass/Classes/CNCommonTableViewController.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/Objects-normal/armv7/CNCommonTableViewController.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveCommonClass/CNLiveCommonClass/Classes/CNCommonTableViewController.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveCommonClass/CNLiveCommonClass-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveCommonClass/CNLiveCommonClass/Classes/CNCommonTableViewController.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/module.modulemap","<target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9--generated-headers>","<target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9--phase0-copy-headers>","<target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/Objects-normal/armv7/CNCommonTableViewController.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=CNLiveCommonClass","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/CNLiveCommonClass-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/CNLiveCommonClass-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/CNLiveCommonClass-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/CNLiveCommonClass-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveCommonClass/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveCommonClass","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveTripartiteManagement","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveCommonClass/CNLiveCommonClass-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/Objects-normal/armv7/CNCommonTableViewController.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/Objects-normal/armv7/CNCommonTableViewController.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveCommonClass/CNLiveCommonClass/Classes/CNCommonTableViewController.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/Objects-normal/armv7/CNCommonTableViewController.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/Objects-normal/armv7/CNCommonTableViewController.d"],"deps-style":"makefile","signature":"435879453d58583d498aa540e40bc198"}
"target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/Objects-normal/armv7/CNCommonView.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveCommonClass/CNLiveCommonClass/Classes/CNCommonView.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/Objects-normal/armv7/CNCommonView.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveCommonClass/CNLiveCommonClass/Classes/CNCommonView.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveCommonClass/CNLiveCommonClass-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveCommonClass/CNLiveCommonClass/Classes/CNCommonView.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/module.modulemap","<target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9--generated-headers>","<target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9--phase0-copy-headers>","<target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/Objects-normal/armv7/CNCommonView.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=CNLiveCommonClass","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/CNLiveCommonClass-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/CNLiveCommonClass-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/CNLiveCommonClass-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/CNLiveCommonClass-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveCommonClass/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveCommonClass","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveTripartiteManagement","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveCommonClass/CNLiveCommonClass-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/Objects-normal/armv7/CNCommonView.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/Objects-normal/armv7/CNCommonView.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveCommonClass/CNLiveCommonClass/Classes/CNCommonView.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/Objects-normal/armv7/CNCommonView.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/Objects-normal/armv7/CNCommonView.d"],"deps-style":"makefile","signature":"d4199dd7988440639fbe8d5ac02db42b"}
"target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/Objects-normal/armv7/CNCommonViewController.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveCommonClass/CNLiveCommonClass/Classes/CNCommonViewController.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/Objects-normal/armv7/CNCommonViewController.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveCommonClass/CNLiveCommonClass/Classes/CNCommonViewController.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveCommonClass/CNLiveCommonClass-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveCommonClass/CNLiveCommonClass/Classes/CNCommonViewController.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/module.modulemap","<target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9--generated-headers>","<target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9--phase0-copy-headers>","<target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/Objects-normal/armv7/CNCommonViewController.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=CNLiveCommonClass","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/CNLiveCommonClass-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/CNLiveCommonClass-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/CNLiveCommonClass-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/CNLiveCommonClass-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveCommonClass/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveCommonClass","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveTripartiteManagement","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveCommonClass/CNLiveCommonClass-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/Objects-normal/armv7/CNCommonViewController.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/Objects-normal/armv7/CNCommonViewController.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveCommonClass/CNLiveCommonClass/Classes/CNCommonViewController.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/Objects-normal/armv7/CNCommonViewController.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/Objects-normal/armv7/CNCommonViewController.d"],"deps-style":"makefile","signature":"2ed1a6a69432142865b5c7eb2635da96"}
"target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/Objects-normal/armv7/CNLiveCommonClass-dummy.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveCommonClass/CNLiveCommonClass-dummy.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/Objects-normal/armv7/CNLiveCommonClass-dummy.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveCommonClass/CNLiveCommonClass-dummy.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveCommonClass/CNLiveCommonClass-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveCommonClass/CNLiveCommonClass-dummy.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/module.modulemap","<target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9--generated-headers>","<target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9--phase0-copy-headers>","<target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/Objects-normal/armv7/CNLiveCommonClass-dummy.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=CNLiveCommonClass","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/CNLiveCommonClass-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/CNLiveCommonClass-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/CNLiveCommonClass-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/CNLiveCommonClass-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveCommonClass/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveCommonClass","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveTripartiteManagement","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveCommonClass/CNLiveCommonClass-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/Objects-normal/armv7/CNLiveCommonClass-dummy.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/Objects-normal/armv7/CNLiveCommonClass-dummy.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveCommonClass/CNLiveCommonClass-dummy.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/Objects-normal/armv7/CNLiveCommonClass-dummy.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/Objects-normal/armv7/CNLiveCommonClass-dummy.d"],"deps-style":"makefile","signature":"bdfa0b660bacaae28e1e7247800c1fe6"}
"target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/Objects-normal/armv7/CNLiveCommonClass_vers.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/DerivedSources/CNLiveCommonClass_vers.c normal armv7 c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/Objects-normal/armv7/CNLiveCommonClass_vers.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/DerivedSources/CNLiveCommonClass_vers.c normal armv7 c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/DerivedSources/CNLiveCommonClass_vers.c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/module.modulemap","<target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9--generated-headers>","<target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9--phase0-copy-headers>","<target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/Objects-normal/armv7/CNLiveCommonClass_vers.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c","-target","armv7-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=CNLiveCommonClass","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Werror=deprecated-objc-isa-usage","-Werror=objc-root-class","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/CNLiveCommonClass-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/CNLiveCommonClass-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/CNLiveCommonClass-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/CNLiveCommonClass-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveCommonClass/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveCommonClass","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveTripartiteManagement","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/Objects-normal/armv7/CNLiveCommonClass_vers.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/Objects-normal/armv7/CNLiveCommonClass_vers.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/DerivedSources/CNLiveCommonClass_vers.c","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/Objects-normal/armv7/CNLiveCommonClass_vers.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/Objects-normal/armv7/CNLiveCommonClass_vers.d"],"deps-style":"makefile","signature":"4ed91a7e51703f6ad14d45402991087c"}
"target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/Objects-normal/armv7/CNThemeManager.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveCommonClass/CNLiveCommonClass/Classes/CNThemeManager.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/Objects-normal/armv7/CNThemeManager.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveCommonClass/CNLiveCommonClass/Classes/CNThemeManager.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveCommonClass/CNLiveCommonClass-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveCommonClass/CNLiveCommonClass/Classes/CNThemeManager.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/module.modulemap","<target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9--generated-headers>","<target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9--phase0-copy-headers>","<target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/Objects-normal/armv7/CNThemeManager.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=CNLiveCommonClass","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/CNLiveCommonClass-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/CNLiveCommonClass-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/CNLiveCommonClass-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/CNLiveCommonClass-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveCommonClass/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveCommonClass","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveTripartiteManagement","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveCommonClass/CNLiveCommonClass-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/Objects-normal/armv7/CNThemeManager.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/Objects-normal/armv7/CNThemeManager.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveCommonClass/CNLiveCommonClass/Classes/CNThemeManager.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/Objects-normal/armv7/CNThemeManager.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/Objects-normal/armv7/CNThemeManager.d"],"deps-style":"makefile","signature":"7f39b2bf1501f1c98770a2708e4784a1"}
"target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveCommonClass/CNLiveCommonClass/Classes/CNCommonListViewController.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveCommonClass/CNLiveCommonClass.framework/Headers/CNCommonListViewController.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveCommonClass/CNLiveCommonClass/Classes/CNCommonListViewController.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveCommonClass/CNLiveCommonClass.framework/Headers/CNCommonListViewController.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveCommonClass/CNLiveCommonClass/Classes/CNCommonListViewController.h/","<target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9--HeadermapTaskProducer>","<target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveCommonClass/CNLiveCommonClass.framework/Headers/CNCommonListViewController.h"]}
"target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveCommonClass/CNLiveCommonClass/Classes/CNCommonTableViewController.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveCommonClass/CNLiveCommonClass.framework/Headers/CNCommonTableViewController.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveCommonClass/CNLiveCommonClass/Classes/CNCommonTableViewController.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveCommonClass/CNLiveCommonClass.framework/Headers/CNCommonTableViewController.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveCommonClass/CNLiveCommonClass/Classes/CNCommonTableViewController.h/","<target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9--HeadermapTaskProducer>","<target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveCommonClass/CNLiveCommonClass.framework/Headers/CNCommonTableViewController.h"]}
"target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveCommonClass/CNLiveCommonClass/Classes/CNCommonView.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveCommonClass/CNLiveCommonClass.framework/Headers/CNCommonView.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveCommonClass/CNLiveCommonClass/Classes/CNCommonView.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveCommonClass/CNLiveCommonClass.framework/Headers/CNCommonView.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveCommonClass/CNLiveCommonClass/Classes/CNCommonView.h/","<target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9--HeadermapTaskProducer>","<target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveCommonClass/CNLiveCommonClass.framework/Headers/CNCommonView.h"]}
"target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveCommonClass/CNLiveCommonClass/Classes/CNCommonViewController.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveCommonClass/CNLiveCommonClass.framework/Headers/CNCommonViewController.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveCommonClass/CNLiveCommonClass/Classes/CNCommonViewController.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveCommonClass/CNLiveCommonClass.framework/Headers/CNCommonViewController.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveCommonClass/CNLiveCommonClass/Classes/CNCommonViewController.h/","<target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9--HeadermapTaskProducer>","<target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveCommonClass/CNLiveCommonClass.framework/Headers/CNCommonViewController.h"]}
"target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveCommonClass/CNLiveCommonClass/Classes/CNLiveCommonClass.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveCommonClass/CNLiveCommonClass.framework/Headers/CNLiveCommonClass.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveCommonClass/CNLiveCommonClass/Classes/CNLiveCommonClass.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveCommonClass/CNLiveCommonClass.framework/Headers/CNLiveCommonClass.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveCommonClass/CNLiveCommonClass/Classes/CNLiveCommonClass.h/","<target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9--HeadermapTaskProducer>","<target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveCommonClass/CNLiveCommonClass.framework/Headers/CNLiveCommonClass.h"]}
"target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveCommonClass/CNLiveCommonClass/Classes/CNThemeManager.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveCommonClass/CNLiveCommonClass.framework/Headers/CNThemeManager.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveCommonClass/CNLiveCommonClass/Classes/CNThemeManager.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveCommonClass/CNLiveCommonClass.framework/Headers/CNThemeManager.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveCommonClass/CNLiveCommonClass/Classes/CNThemeManager.h/","<target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9--HeadermapTaskProducer>","<target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveCommonClass/CNLiveCommonClass.framework/Headers/CNThemeManager.h"]}
"target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveCommonClass/CNLiveCommonClass/Classes/CNThemeProtocol.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveCommonClass/CNLiveCommonClass.framework/Headers/CNThemeProtocol.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveCommonClass/CNLiveCommonClass/Classes/CNThemeProtocol.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveCommonClass/CNLiveCommonClass.framework/Headers/CNThemeProtocol.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveCommonClass/CNLiveCommonClass/Classes/CNThemeProtocol.h/","<target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9--HeadermapTaskProducer>","<target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveCommonClass/CNLiveCommonClass.framework/Headers/CNThemeProtocol.h"]}
"target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveCommonClass/CNLiveCommonClass-umbrella.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveCommonClass/CNLiveCommonClass.framework/Headers/CNLiveCommonClass-umbrella.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveCommonClass/CNLiveCommonClass-umbrella.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveCommonClass/CNLiveCommonClass.framework/Headers/CNLiveCommonClass-umbrella.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveCommonClass/CNLiveCommonClass-umbrella.h/","<target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9--HeadermapTaskProducer>","<target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveCommonClass/CNLiveCommonClass.framework/Headers/CNLiveCommonClass-umbrella.h"]}
"target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9-:Debug:CreateUniversalBinary /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveCommonClass/CNLiveCommonClass.framework/CNLiveCommonClass normal armv7 arm64": {"tool":"shell","description":"CreateUniversalBinary /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveCommonClass/CNLiveCommonClass.framework/CNLiveCommonClass normal armv7 arm64","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/Objects-normal/armv7/Binary/CNLiveCommonClass","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/Objects-normal/arm64/Binary/CNLiveCommonClass","<target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9--phase0-copy-headers>","<target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveCommonClass/CNLiveCommonClass.framework/CNLiveCommonClass","<Linked Binary /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveCommonClass/CNLiveCommonClass.framework/CNLiveCommonClass>"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/lipo","-create","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/Objects-normal/armv7/Binary/CNLiveCommonClass","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/Objects-normal/arm64/Binary/CNLiveCommonClass","-output","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveCommonClass/CNLiveCommonClass.framework/CNLiveCommonClass"],"env":{},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","signature":"7d9361d849fe842c2d09dd2415f20763"}
"target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9-:Debug:Ditto /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/module.modulemap /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveCommonClass/CNLiveCommonClass.framework/Modules/module.modulemap": {"tool":"file-copy","description":"Ditto /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/module.modulemap /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveCommonClass/CNLiveCommonClass.framework/Modules/module.modulemap","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/module.modulemap/","<target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9--HeadermapTaskProducer>","<target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveCommonClass/CNLiveCommonClass.framework/Modules/module.modulemap"]}
"target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9-:Debug:Ld /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/Objects-normal/arm64/Binary/CNLiveCommonClass normal arm64": {"tool":"shell","description":"Ld /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/Objects-normal/arm64/Binary/CNLiveCommonClass normal arm64","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/Objects-normal/arm64/CNCommonListViewController.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/Objects-normal/arm64/CNCommonTableViewController.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/Objects-normal/arm64/CNCommonView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/Objects-normal/arm64/CNCommonViewController.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/Objects-normal/arm64/CNLiveCommonClass-dummy.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/Objects-normal/arm64/CNThemeManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/Objects-normal/arm64/CNLiveCommonClass_vers.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/Objects-normal/arm64/CNLiveCommonClass.LinkFileList","<target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9--phase0-copy-headers>","<target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/Objects-normal/arm64/Binary/CNLiveCommonClass"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-target","arm64-apple-ios9.0","-dynamiclib","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-L/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveCommonClass","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveCommonClass","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveTripartiteManagement","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-filelist","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/Objects-normal/arm64/CNLiveCommonClass.LinkFileList","-install_name","@rpath/CNLiveCommonClass.framework/CNLiveCommonClass","-Xlinker","-rpath","-Xlinker","@executable_path/Frameworks","-Xlinker","-rpath","-Xlinker","@loader_path/Frameworks","-dead_strip","-Xlinker","-object_path_lto","-Xlinker","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/Objects-normal/arm64/CNLiveCommonClass_lto.o","-Xlinker","-export_dynamic","-Xlinker","-no_deduplicate","-fembed-bitcode-marker","-fobjc-arc","-fobjc-link-runtime","-framework","CNLiveBaseKit","-framework","CNLiveRequestBastKit","-framework","CNLiveTripartiteManagement","-framework","Foundation","-compatibility_version","1","-current_version","1","-Xlinker","-dependency_info","-Xlinker","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/Objects-normal/arm64/CNLiveCommonClass_dependency_info.dat","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/Objects-normal/arm64/Binary/CNLiveCommonClass"],"env":{},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/Objects-normal/arm64/CNLiveCommonClass_dependency_info.dat"],"deps-style":"dependency-info","signature":"5f15cd128419231166a7a1f91421fb2a"}
"target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9-:Debug:Ld /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/Objects-normal/armv7/Binary/CNLiveCommonClass normal armv7": {"tool":"shell","description":"Ld /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/Objects-normal/armv7/Binary/CNLiveCommonClass normal armv7","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/Objects-normal/armv7/CNCommonListViewController.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/Objects-normal/armv7/CNCommonTableViewController.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/Objects-normal/armv7/CNCommonView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/Objects-normal/armv7/CNCommonViewController.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/Objects-normal/armv7/CNLiveCommonClass-dummy.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/Objects-normal/armv7/CNThemeManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/Objects-normal/armv7/CNLiveCommonClass_vers.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/Objects-normal/armv7/CNLiveCommonClass.LinkFileList","<target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9--phase0-copy-headers>","<target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/Objects-normal/armv7/Binary/CNLiveCommonClass"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-target","armv7-apple-ios9.0","-dynamiclib","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-L/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveCommonClass","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveCommonClass","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveTripartiteManagement","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-filelist","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/Objects-normal/armv7/CNLiveCommonClass.LinkFileList","-install_name","@rpath/CNLiveCommonClass.framework/CNLiveCommonClass","-Xlinker","-rpath","-Xlinker","@executable_path/Frameworks","-Xlinker","-rpath","-Xlinker","@loader_path/Frameworks","-dead_strip","-Xlinker","-object_path_lto","-Xlinker","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/Objects-normal/armv7/CNLiveCommonClass_lto.o","-Xlinker","-export_dynamic","-Xlinker","-no_deduplicate","-fembed-bitcode-marker","-fobjc-arc","-fobjc-link-runtime","-framework","CNLiveBaseKit","-framework","CNLiveRequestBastKit","-framework","CNLiveTripartiteManagement","-framework","Foundation","-compatibility_version","1","-current_version","1","-Xlinker","-dependency_info","-Xlinker","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/Objects-normal/armv7/CNLiveCommonClass_dependency_info.dat","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/Objects-normal/armv7/Binary/CNLiveCommonClass"],"env":{},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/Objects-normal/armv7/CNLiveCommonClass_dependency_info.dat"],"deps-style":"dependency-info","signature":"e0cbc7c343c9b0785dc070417ccb0eb2"}
"target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9-:Debug:MkDir /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveCommonClass/CNLiveCommonClass.framework": {"tool":"mkdir","description":"MkDir /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveCommonClass/CNLiveCommonClass.framework","inputs":["<target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9--start>","<target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveCommonClass/CNLiveCommonClass.framework","<MkDir /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveCommonClass/CNLiveCommonClass.framework>"]}
"target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9-:Debug:MkDir /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveCommonClass/CNLiveCommonClass.framework/Headers": {"tool":"mkdir","description":"MkDir /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveCommonClass/CNLiveCommonClass.framework/Headers","inputs":["<target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9--start>","<target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveCommonClass/CNLiveCommonClass.framework/Headers","<MkDir /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveCommonClass/CNLiveCommonClass.framework/Headers>"]}
"target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9-:Debug:ProcessInfoPlistFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveCommonClass/CNLiveCommonClass.framework/Info.plist /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveCommonClass/CNLiveCommonClass-Info.plist": {"tool":"info-plist-processor","description":"ProcessInfoPlistFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveCommonClass/CNLiveCommonClass.framework/Info.plist /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveCommonClass/CNLiveCommonClass-Info.plist","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveCommonClass/CNLiveCommonClass-Info.plist","<target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9--HeadermapTaskProducer>","<target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveCommonClass/CNLiveCommonClass.framework/Info.plist"]}
"target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9-:Debug:Touch /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveCommonClass/CNLiveCommonClass.framework": {"tool":"shell","description":"Touch /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveCommonClass/CNLiveCommonClass.framework","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveCommonClass/CNLiveCommonClass.framework","<target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9--Barrier-RegisterExecutionPolicyException>","<target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9--entry>"],"outputs":["<Touch /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveCommonClass/CNLiveCommonClass.framework>"],"args":["/usr/bin/touch","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveCommonClass/CNLiveCommonClass.framework"],"env":{},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","signature":"25ed94298927541da8867be541cba88b"}
"target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/CNLiveCommonClass-all-non-framework-target-headers.hmap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/CNLiveCommonClass-all-non-framework-target-headers.hmap","inputs":["<target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9--GeneratedFilesTaskProducer>","<target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/CNLiveCommonClass-all-non-framework-target-headers.hmap"]}
"target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/CNLiveCommonClass-all-target-headers.hmap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/CNLiveCommonClass-all-target-headers.hmap","inputs":["<target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9--GeneratedFilesTaskProducer>","<target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/CNLiveCommonClass-all-target-headers.hmap"]}
"target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/CNLiveCommonClass-generated-files.hmap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/CNLiveCommonClass-generated-files.hmap","inputs":["<target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9--GeneratedFilesTaskProducer>","<target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/CNLiveCommonClass-generated-files.hmap"]}
"target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/CNLiveCommonClass-own-target-headers.hmap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/CNLiveCommonClass-own-target-headers.hmap","inputs":["<target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9--GeneratedFilesTaskProducer>","<target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/CNLiveCommonClass-own-target-headers.hmap"]}
"target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/CNLiveCommonClass-project-headers.hmap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/CNLiveCommonClass-project-headers.hmap","inputs":["<target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9--GeneratedFilesTaskProducer>","<target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/CNLiveCommonClass-project-headers.hmap"]}
"target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/CNLiveCommonClass.hmap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/CNLiveCommonClass.hmap","inputs":["<target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9--GeneratedFilesTaskProducer>","<target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/CNLiveCommonClass.hmap"]}
"target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/DerivedSources/CNLiveCommonClass_vers.c": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/DerivedSources/CNLiveCommonClass_vers.c","inputs":["<target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9--phase0-copy-headers>","<target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/DerivedSources/CNLiveCommonClass_vers.c"]}
"target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/Objects-normal/arm64/CNLiveCommonClass.LinkFileList": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/Objects-normal/arm64/CNLiveCommonClass.LinkFileList","inputs":["<target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9--phase0-copy-headers>","<target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/Objects-normal/arm64/CNLiveCommonClass.LinkFileList"]}
"target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/Objects-normal/armv7/CNLiveCommonClass.LinkFileList": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/Objects-normal/armv7/CNLiveCommonClass.LinkFileList","inputs":["<target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9--phase0-copy-headers>","<target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/Objects-normal/armv7/CNLiveCommonClass.LinkFileList"]}
"target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/all-product-headers.yaml": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/all-product-headers.yaml","inputs":["<target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9--GeneratedFilesTaskProducer>","<target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/all-product-headers.yaml"]}
"target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/module.modulemap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/module.modulemap","inputs":["<target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9--HeadermapTaskProducer>","<target-CNLiveCommonClass-285b96a559574e49fe0e1a40c03a5a8ea840edaa086606c1a9d58b494bcc1dc9--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveCommonClass.build/module.modulemap"]}
"target-CNLiveEnvironment-285b96a559574e49fe0e1a40c03a5a8e61e9c7c4a29ad91844f8d551bbfe0deb-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveEnvironment.build/Objects-normal/arm64/CNLiveEnvironment-dummy.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveEnvironment/CNLiveEnvironment-dummy.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveEnvironment.build/Objects-normal/arm64/CNLiveEnvironment-dummy.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveEnvironment/CNLiveEnvironment-dummy.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveEnvironment/CNLiveEnvironment-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveEnvironment/CNLiveEnvironment-dummy.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveEnvironment.build/module.modulemap","<target-CNLiveEnvironment-285b96a559574e49fe0e1a40c03a5a8e61e9c7c4a29ad91844f8d551bbfe0deb--generated-headers>","<target-CNLiveEnvironment-285b96a559574e49fe0e1a40c03a5a8e61e9c7c4a29ad91844f8d551bbfe0deb--phase0-copy-headers>","<target-CNLiveEnvironment-285b96a559574e49fe0e1a40c03a5a8e61e9c7c4a29ad91844f8d551bbfe0deb--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveEnvironment.build/Objects-normal/arm64/CNLiveEnvironment-dummy.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=CNLiveEnvironment","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveEnvironment.build/CNLiveEnvironment-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveEnvironment.build/CNLiveEnvironment-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveEnvironment.build/CNLiveEnvironment-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveEnvironment.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveEnvironment.build/CNLiveEnvironment-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveEnvironment/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveEnvironment.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveEnvironment.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveEnvironment.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveEnvironment","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveEnvironment/CNLiveEnvironment-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveEnvironment.build/Objects-normal/arm64/CNLiveEnvironment-dummy.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveEnvironment.build/Objects-normal/arm64/CNLiveEnvironment-dummy.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveEnvironment/CNLiveEnvironment-dummy.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveEnvironment.build/Objects-normal/arm64/CNLiveEnvironment-dummy.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveEnvironment.build/Objects-normal/arm64/CNLiveEnvironment-dummy.d"],"deps-style":"makefile","signature":"63a54f516849df16adccbaac4355140c"}
"target-CNLiveEnvironment-285b96a559574e49fe0e1a40c03a5a8e61e9c7c4a29ad91844f8d551bbfe0deb-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveEnvironment.build/Objects-normal/arm64/CNLiveEnvironmentManager.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveEnvironment/CNLiveEnvironment/Classes/CNLiveEnvironmentManager.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveEnvironment.build/Objects-normal/arm64/CNLiveEnvironmentManager.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveEnvironment/CNLiveEnvironment/Classes/CNLiveEnvironmentManager.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveEnvironment/CNLiveEnvironment-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveEnvironment/CNLiveEnvironment/Classes/CNLiveEnvironmentManager.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveEnvironment.build/module.modulemap","<target-CNLiveEnvironment-285b96a559574e49fe0e1a40c03a5a8e61e9c7c4a29ad91844f8d551bbfe0deb--generated-headers>","<target-CNLiveEnvironment-285b96a559574e49fe0e1a40c03a5a8e61e9c7c4a29ad91844f8d551bbfe0deb--phase0-copy-headers>","<target-CNLiveEnvironment-285b96a559574e49fe0e1a40c03a5a8e61e9c7c4a29ad91844f8d551bbfe0deb--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveEnvironment.build/Objects-normal/arm64/CNLiveEnvironmentManager.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=CNLiveEnvironment","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveEnvironment.build/CNLiveEnvironment-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveEnvironment.build/CNLiveEnvironment-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveEnvironment.build/CNLiveEnvironment-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveEnvironment.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveEnvironment.build/CNLiveEnvironment-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveEnvironment/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveEnvironment.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveEnvironment.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveEnvironment.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveEnvironment","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveEnvironment/CNLiveEnvironment-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveEnvironment.build/Objects-normal/arm64/CNLiveEnvironmentManager.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveEnvironment.build/Objects-normal/arm64/CNLiveEnvironmentManager.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveEnvironment/CNLiveEnvironment/Classes/CNLiveEnvironmentManager.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveEnvironment.build/Objects-normal/arm64/CNLiveEnvironmentManager.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveEnvironment.build/Objects-normal/arm64/CNLiveEnvironmentManager.d"],"deps-style":"makefile","signature":"ebf6cdf556bfcc7c866a12a77b18d2bc"}
"target-CNLiveEnvironment-285b96a559574e49fe0e1a40c03a5a8e61e9c7c4a29ad91844f8d551bbfe0deb-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveEnvironment.build/Objects-normal/arm64/CNLiveEnvironment_vers.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveEnvironment.build/DerivedSources/CNLiveEnvironment_vers.c normal arm64 c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveEnvironment.build/Objects-normal/arm64/CNLiveEnvironment_vers.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveEnvironment.build/DerivedSources/CNLiveEnvironment_vers.c normal arm64 c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveEnvironment.build/DerivedSources/CNLiveEnvironment_vers.c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveEnvironment.build/module.modulemap","<target-CNLiveEnvironment-285b96a559574e49fe0e1a40c03a5a8e61e9c7c4a29ad91844f8d551bbfe0deb--generated-headers>","<target-CNLiveEnvironment-285b96a559574e49fe0e1a40c03a5a8e61e9c7c4a29ad91844f8d551bbfe0deb--phase0-copy-headers>","<target-CNLiveEnvironment-285b96a559574e49fe0e1a40c03a5a8e61e9c7c4a29ad91844f8d551bbfe0deb--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveEnvironment.build/Objects-normal/arm64/CNLiveEnvironment_vers.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c","-target","arm64-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=CNLiveEnvironment","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Werror=deprecated-objc-isa-usage","-Werror=objc-root-class","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveEnvironment.build/CNLiveEnvironment-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveEnvironment.build/CNLiveEnvironment-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveEnvironment.build/CNLiveEnvironment-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveEnvironment.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveEnvironment.build/CNLiveEnvironment-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveEnvironment/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveEnvironment.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveEnvironment.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveEnvironment.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveEnvironment","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveEnvironment.build/Objects-normal/arm64/CNLiveEnvironment_vers.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveEnvironment.build/Objects-normal/arm64/CNLiveEnvironment_vers.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveEnvironment.build/DerivedSources/CNLiveEnvironment_vers.c","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveEnvironment.build/Objects-normal/arm64/CNLiveEnvironment_vers.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveEnvironment.build/Objects-normal/arm64/CNLiveEnvironment_vers.d"],"deps-style":"makefile","signature":"d13dacf4d14d7d8eb163495cf32db4c8"}
"target-CNLiveEnvironment-285b96a559574e49fe0e1a40c03a5a8e61e9c7c4a29ad91844f8d551bbfe0deb-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveEnvironment.build/Objects-normal/armv7/CNLiveEnvironment-dummy.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveEnvironment/CNLiveEnvironment-dummy.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveEnvironment.build/Objects-normal/armv7/CNLiveEnvironment-dummy.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveEnvironment/CNLiveEnvironment-dummy.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveEnvironment/CNLiveEnvironment-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveEnvironment/CNLiveEnvironment-dummy.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveEnvironment.build/module.modulemap","<target-CNLiveEnvironment-285b96a559574e49fe0e1a40c03a5a8e61e9c7c4a29ad91844f8d551bbfe0deb--generated-headers>","<target-CNLiveEnvironment-285b96a559574e49fe0e1a40c03a5a8e61e9c7c4a29ad91844f8d551bbfe0deb--phase0-copy-headers>","<target-CNLiveEnvironment-285b96a559574e49fe0e1a40c03a5a8e61e9c7c4a29ad91844f8d551bbfe0deb--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveEnvironment.build/Objects-normal/armv7/CNLiveEnvironment-dummy.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=CNLiveEnvironment","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveEnvironment.build/CNLiveEnvironment-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveEnvironment.build/CNLiveEnvironment-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveEnvironment.build/CNLiveEnvironment-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveEnvironment.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveEnvironment.build/CNLiveEnvironment-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveEnvironment/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveEnvironment.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveEnvironment.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveEnvironment.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveEnvironment","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveEnvironment/CNLiveEnvironment-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveEnvironment.build/Objects-normal/armv7/CNLiveEnvironment-dummy.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveEnvironment.build/Objects-normal/armv7/CNLiveEnvironment-dummy.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveEnvironment/CNLiveEnvironment-dummy.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveEnvironment.build/Objects-normal/armv7/CNLiveEnvironment-dummy.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveEnvironment.build/Objects-normal/armv7/CNLiveEnvironment-dummy.d"],"deps-style":"makefile","signature":"3347c4816fa369bd05b528257038c1b4"}
"target-CNLiveEnvironment-285b96a559574e49fe0e1a40c03a5a8e61e9c7c4a29ad91844f8d551bbfe0deb-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveEnvironment.build/Objects-normal/armv7/CNLiveEnvironmentManager.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveEnvironment/CNLiveEnvironment/Classes/CNLiveEnvironmentManager.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveEnvironment.build/Objects-normal/armv7/CNLiveEnvironmentManager.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveEnvironment/CNLiveEnvironment/Classes/CNLiveEnvironmentManager.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveEnvironment/CNLiveEnvironment-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveEnvironment/CNLiveEnvironment/Classes/CNLiveEnvironmentManager.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveEnvironment.build/module.modulemap","<target-CNLiveEnvironment-285b96a559574e49fe0e1a40c03a5a8e61e9c7c4a29ad91844f8d551bbfe0deb--generated-headers>","<target-CNLiveEnvironment-285b96a559574e49fe0e1a40c03a5a8e61e9c7c4a29ad91844f8d551bbfe0deb--phase0-copy-headers>","<target-CNLiveEnvironment-285b96a559574e49fe0e1a40c03a5a8e61e9c7c4a29ad91844f8d551bbfe0deb--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveEnvironment.build/Objects-normal/armv7/CNLiveEnvironmentManager.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=CNLiveEnvironment","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveEnvironment.build/CNLiveEnvironment-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveEnvironment.build/CNLiveEnvironment-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveEnvironment.build/CNLiveEnvironment-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveEnvironment.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveEnvironment.build/CNLiveEnvironment-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveEnvironment/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveEnvironment.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveEnvironment.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveEnvironment.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveEnvironment","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveEnvironment/CNLiveEnvironment-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveEnvironment.build/Objects-normal/armv7/CNLiveEnvironmentManager.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveEnvironment.build/Objects-normal/armv7/CNLiveEnvironmentManager.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveEnvironment/CNLiveEnvironment/Classes/CNLiveEnvironmentManager.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveEnvironment.build/Objects-normal/armv7/CNLiveEnvironmentManager.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveEnvironment.build/Objects-normal/armv7/CNLiveEnvironmentManager.d"],"deps-style":"makefile","signature":"401b078ba56d5bc11ecf64b580a43b17"}
"target-CNLiveEnvironment-285b96a559574e49fe0e1a40c03a5a8e61e9c7c4a29ad91844f8d551bbfe0deb-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveEnvironment.build/Objects-normal/armv7/CNLiveEnvironment_vers.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveEnvironment.build/DerivedSources/CNLiveEnvironment_vers.c normal armv7 c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveEnvironment.build/Objects-normal/armv7/CNLiveEnvironment_vers.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveEnvironment.build/DerivedSources/CNLiveEnvironment_vers.c normal armv7 c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveEnvironment.build/DerivedSources/CNLiveEnvironment_vers.c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveEnvironment.build/module.modulemap","<target-CNLiveEnvironment-285b96a559574e49fe0e1a40c03a5a8e61e9c7c4a29ad91844f8d551bbfe0deb--generated-headers>","<target-CNLiveEnvironment-285b96a559574e49fe0e1a40c03a5a8e61e9c7c4a29ad91844f8d551bbfe0deb--phase0-copy-headers>","<target-CNLiveEnvironment-285b96a559574e49fe0e1a40c03a5a8e61e9c7c4a29ad91844f8d551bbfe0deb--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveEnvironment.build/Objects-normal/armv7/CNLiveEnvironment_vers.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c","-target","armv7-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=CNLiveEnvironment","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Werror=deprecated-objc-isa-usage","-Werror=objc-root-class","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveEnvironment.build/CNLiveEnvironment-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveEnvironment.build/CNLiveEnvironment-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveEnvironment.build/CNLiveEnvironment-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveEnvironment.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveEnvironment.build/CNLiveEnvironment-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveEnvironment/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveEnvironment.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveEnvironment.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveEnvironment.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveEnvironment","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveEnvironment.build/Objects-normal/armv7/CNLiveEnvironment_vers.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveEnvironment.build/Objects-normal/armv7/CNLiveEnvironment_vers.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveEnvironment.build/DerivedSources/CNLiveEnvironment_vers.c","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveEnvironment.build/Objects-normal/armv7/CNLiveEnvironment_vers.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveEnvironment.build/Objects-normal/armv7/CNLiveEnvironment_vers.d"],"deps-style":"makefile","signature":"f6fc3c43fd09c677936c6e8ea2cd9eb7"}
"target-CNLiveEnvironment-285b96a559574e49fe0e1a40c03a5a8e61e9c7c4a29ad91844f8d551bbfe0deb-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveEnvironment/CNLiveEnvironment/Classes/CNLiveEnvironment.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveEnvironment/CNLiveEnvironment.framework/Headers/CNLiveEnvironment.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveEnvironment/CNLiveEnvironment/Classes/CNLiveEnvironment.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveEnvironment/CNLiveEnvironment.framework/Headers/CNLiveEnvironment.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveEnvironment/CNLiveEnvironment/Classes/CNLiveEnvironment.h/","<target-CNLiveEnvironment-285b96a559574e49fe0e1a40c03a5a8e61e9c7c4a29ad91844f8d551bbfe0deb--HeadermapTaskProducer>","<target-CNLiveEnvironment-285b96a559574e49fe0e1a40c03a5a8e61e9c7c4a29ad91844f8d551bbfe0deb--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveEnvironment/CNLiveEnvironment.framework/Headers/CNLiveEnvironment.h"]}
"target-CNLiveEnvironment-285b96a559574e49fe0e1a40c03a5a8e61e9c7c4a29ad91844f8d551bbfe0deb-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveEnvironment/CNLiveEnvironment/Classes/CNLiveEnvironmentManager.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveEnvironment/CNLiveEnvironment.framework/Headers/CNLiveEnvironmentManager.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveEnvironment/CNLiveEnvironment/Classes/CNLiveEnvironmentManager.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveEnvironment/CNLiveEnvironment.framework/Headers/CNLiveEnvironmentManager.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveEnvironment/CNLiveEnvironment/Classes/CNLiveEnvironmentManager.h/","<target-CNLiveEnvironment-285b96a559574e49fe0e1a40c03a5a8e61e9c7c4a29ad91844f8d551bbfe0deb--HeadermapTaskProducer>","<target-CNLiveEnvironment-285b96a559574e49fe0e1a40c03a5a8e61e9c7c4a29ad91844f8d551bbfe0deb--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveEnvironment/CNLiveEnvironment.framework/Headers/CNLiveEnvironmentManager.h"]}
"target-CNLiveEnvironment-285b96a559574e49fe0e1a40c03a5a8e61e9c7c4a29ad91844f8d551bbfe0deb-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveEnvironment/CNLiveEnvironment/Classes/CNLiveInterface.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveEnvironment/CNLiveEnvironment.framework/Headers/CNLiveInterface.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveEnvironment/CNLiveEnvironment/Classes/CNLiveInterface.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveEnvironment/CNLiveEnvironment.framework/Headers/CNLiveInterface.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveEnvironment/CNLiveEnvironment/Classes/CNLiveInterface.h/","<target-CNLiveEnvironment-285b96a559574e49fe0e1a40c03a5a8e61e9c7c4a29ad91844f8d551bbfe0deb--HeadermapTaskProducer>","<target-CNLiveEnvironment-285b96a559574e49fe0e1a40c03a5a8e61e9c7c4a29ad91844f8d551bbfe0deb--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveEnvironment/CNLiveEnvironment.framework/Headers/CNLiveInterface.h"]}
"target-CNLiveEnvironment-285b96a559574e49fe0e1a40c03a5a8e61e9c7c4a29ad91844f8d551bbfe0deb-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveEnvironment/CNLiveEnvironment-umbrella.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveEnvironment/CNLiveEnvironment.framework/Headers/CNLiveEnvironment-umbrella.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveEnvironment/CNLiveEnvironment-umbrella.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveEnvironment/CNLiveEnvironment.framework/Headers/CNLiveEnvironment-umbrella.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveEnvironment/CNLiveEnvironment-umbrella.h/","<target-CNLiveEnvironment-285b96a559574e49fe0e1a40c03a5a8e61e9c7c4a29ad91844f8d551bbfe0deb--HeadermapTaskProducer>","<target-CNLiveEnvironment-285b96a559574e49fe0e1a40c03a5a8e61e9c7c4a29ad91844f8d551bbfe0deb--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveEnvironment/CNLiveEnvironment.framework/Headers/CNLiveEnvironment-umbrella.h"]}
"target-CNLiveEnvironment-285b96a559574e49fe0e1a40c03a5a8e61e9c7c4a29ad91844f8d551bbfe0deb-:Debug:CreateUniversalBinary /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveEnvironment/CNLiveEnvironment.framework/CNLiveEnvironment normal armv7 arm64": {"tool":"shell","description":"CreateUniversalBinary /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveEnvironment/CNLiveEnvironment.framework/CNLiveEnvironment normal armv7 arm64","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveEnvironment.build/Objects-normal/armv7/Binary/CNLiveEnvironment","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveEnvironment.build/Objects-normal/arm64/Binary/CNLiveEnvironment","<target-CNLiveEnvironment-285b96a559574e49fe0e1a40c03a5a8e61e9c7c4a29ad91844f8d551bbfe0deb--phase0-copy-headers>","<target-CNLiveEnvironment-285b96a559574e49fe0e1a40c03a5a8e61e9c7c4a29ad91844f8d551bbfe0deb--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveEnvironment/CNLiveEnvironment.framework/CNLiveEnvironment","<Linked Binary /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveEnvironment/CNLiveEnvironment.framework/CNLiveEnvironment>"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/lipo","-create","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveEnvironment.build/Objects-normal/armv7/Binary/CNLiveEnvironment","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveEnvironment.build/Objects-normal/arm64/Binary/CNLiveEnvironment","-output","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveEnvironment/CNLiveEnvironment.framework/CNLiveEnvironment"],"env":{},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","signature":"4022137684d375a9aa58d0f0e0b9720e"}
"target-CNLiveEnvironment-285b96a559574e49fe0e1a40c03a5a8e61e9c7c4a29ad91844f8d551bbfe0deb-:Debug:Ditto /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveEnvironment.build/module.modulemap /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveEnvironment/CNLiveEnvironment.framework/Modules/module.modulemap": {"tool":"file-copy","description":"Ditto /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveEnvironment.build/module.modulemap /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveEnvironment/CNLiveEnvironment.framework/Modules/module.modulemap","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveEnvironment.build/module.modulemap/","<target-CNLiveEnvironment-285b96a559574e49fe0e1a40c03a5a8e61e9c7c4a29ad91844f8d551bbfe0deb--HeadermapTaskProducer>","<target-CNLiveEnvironment-285b96a559574e49fe0e1a40c03a5a8e61e9c7c4a29ad91844f8d551bbfe0deb--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveEnvironment/CNLiveEnvironment.framework/Modules/module.modulemap"]}
"target-CNLiveEnvironment-285b96a559574e49fe0e1a40c03a5a8e61e9c7c4a29ad91844f8d551bbfe0deb-:Debug:Ld /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveEnvironment.build/Objects-normal/arm64/Binary/CNLiveEnvironment normal arm64": {"tool":"shell","description":"Ld /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveEnvironment.build/Objects-normal/arm64/Binary/CNLiveEnvironment normal arm64","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveEnvironment.build/Objects-normal/arm64/CNLiveEnvironment-dummy.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveEnvironment.build/Objects-normal/arm64/CNLiveEnvironmentManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveEnvironment.build/Objects-normal/arm64/CNLiveEnvironment_vers.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveEnvironment.build/Objects-normal/arm64/CNLiveEnvironment.LinkFileList","<target-CNLiveEnvironment-285b96a559574e49fe0e1a40c03a5a8e61e9c7c4a29ad91844f8d551bbfe0deb--phase0-copy-headers>","<target-CNLiveEnvironment-285b96a559574e49fe0e1a40c03a5a8e61e9c7c4a29ad91844f8d551bbfe0deb--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveEnvironment.build/Objects-normal/arm64/Binary/CNLiveEnvironment"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-target","arm64-apple-ios9.0","-dynamiclib","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-L/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveEnvironment","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveEnvironment","-filelist","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveEnvironment.build/Objects-normal/arm64/CNLiveEnvironment.LinkFileList","-install_name","@rpath/CNLiveEnvironment.framework/CNLiveEnvironment","-Xlinker","-rpath","-Xlinker","@executable_path/Frameworks","-Xlinker","-rpath","-Xlinker","@loader_path/Frameworks","-dead_strip","-Xlinker","-object_path_lto","-Xlinker","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveEnvironment.build/Objects-normal/arm64/CNLiveEnvironment_lto.o","-Xlinker","-export_dynamic","-Xlinker","-no_deduplicate","-fembed-bitcode-marker","-fobjc-arc","-fobjc-link-runtime","-framework","Foundation","-compatibility_version","1","-current_version","1","-Xlinker","-dependency_info","-Xlinker","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveEnvironment.build/Objects-normal/arm64/CNLiveEnvironment_dependency_info.dat","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveEnvironment.build/Objects-normal/arm64/Binary/CNLiveEnvironment"],"env":{},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveEnvironment.build/Objects-normal/arm64/CNLiveEnvironment_dependency_info.dat"],"deps-style":"dependency-info","signature":"80733fb87f4320ff6b4a0fc38f59e4d3"}
"target-CNLiveEnvironment-285b96a559574e49fe0e1a40c03a5a8e61e9c7c4a29ad91844f8d551bbfe0deb-:Debug:Ld /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveEnvironment.build/Objects-normal/armv7/Binary/CNLiveEnvironment normal armv7": {"tool":"shell","description":"Ld /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveEnvironment.build/Objects-normal/armv7/Binary/CNLiveEnvironment normal armv7","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveEnvironment.build/Objects-normal/armv7/CNLiveEnvironment-dummy.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveEnvironment.build/Objects-normal/armv7/CNLiveEnvironmentManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveEnvironment.build/Objects-normal/armv7/CNLiveEnvironment_vers.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveEnvironment.build/Objects-normal/armv7/CNLiveEnvironment.LinkFileList","<target-CNLiveEnvironment-285b96a559574e49fe0e1a40c03a5a8e61e9c7c4a29ad91844f8d551bbfe0deb--phase0-copy-headers>","<target-CNLiveEnvironment-285b96a559574e49fe0e1a40c03a5a8e61e9c7c4a29ad91844f8d551bbfe0deb--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveEnvironment.build/Objects-normal/armv7/Binary/CNLiveEnvironment"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-target","armv7-apple-ios9.0","-dynamiclib","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-L/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveEnvironment","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveEnvironment","-filelist","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveEnvironment.build/Objects-normal/armv7/CNLiveEnvironment.LinkFileList","-install_name","@rpath/CNLiveEnvironment.framework/CNLiveEnvironment","-Xlinker","-rpath","-Xlinker","@executable_path/Frameworks","-Xlinker","-rpath","-Xlinker","@loader_path/Frameworks","-dead_strip","-Xlinker","-object_path_lto","-Xlinker","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveEnvironment.build/Objects-normal/armv7/CNLiveEnvironment_lto.o","-Xlinker","-export_dynamic","-Xlinker","-no_deduplicate","-fembed-bitcode-marker","-fobjc-arc","-fobjc-link-runtime","-framework","Foundation","-compatibility_version","1","-current_version","1","-Xlinker","-dependency_info","-Xlinker","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveEnvironment.build/Objects-normal/armv7/CNLiveEnvironment_dependency_info.dat","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveEnvironment.build/Objects-normal/armv7/Binary/CNLiveEnvironment"],"env":{},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveEnvironment.build/Objects-normal/armv7/CNLiveEnvironment_dependency_info.dat"],"deps-style":"dependency-info","signature":"42c845712de580ce299ec57209ae373f"}
"target-CNLiveEnvironment-285b96a559574e49fe0e1a40c03a5a8e61e9c7c4a29ad91844f8d551bbfe0deb-:Debug:MkDir /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveEnvironment/CNLiveEnvironment.framework": {"tool":"mkdir","description":"MkDir /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveEnvironment/CNLiveEnvironment.framework","inputs":["<target-CNLiveEnvironment-285b96a559574e49fe0e1a40c03a5a8e61e9c7c4a29ad91844f8d551bbfe0deb--start>","<target-CNLiveEnvironment-285b96a559574e49fe0e1a40c03a5a8e61e9c7c4a29ad91844f8d551bbfe0deb--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveEnvironment/CNLiveEnvironment.framework","<MkDir /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveEnvironment/CNLiveEnvironment.framework>"]}
"target-CNLiveEnvironment-285b96a559574e49fe0e1a40c03a5a8e61e9c7c4a29ad91844f8d551bbfe0deb-:Debug:MkDir /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveEnvironment/CNLiveEnvironment.framework/Headers": {"tool":"mkdir","description":"MkDir /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveEnvironment/CNLiveEnvironment.framework/Headers","inputs":["<target-CNLiveEnvironment-285b96a559574e49fe0e1a40c03a5a8e61e9c7c4a29ad91844f8d551bbfe0deb--start>","<target-CNLiveEnvironment-285b96a559574e49fe0e1a40c03a5a8e61e9c7c4a29ad91844f8d551bbfe0deb--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveEnvironment/CNLiveEnvironment.framework/Headers","<MkDir /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveEnvironment/CNLiveEnvironment.framework/Headers>"]}
"target-CNLiveEnvironment-285b96a559574e49fe0e1a40c03a5a8e61e9c7c4a29ad91844f8d551bbfe0deb-:Debug:ProcessInfoPlistFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveEnvironment/CNLiveEnvironment.framework/Info.plist /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveEnvironment/CNLiveEnvironment-Info.plist": {"tool":"info-plist-processor","description":"ProcessInfoPlistFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveEnvironment/CNLiveEnvironment.framework/Info.plist /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveEnvironment/CNLiveEnvironment-Info.plist","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveEnvironment/CNLiveEnvironment-Info.plist","<target-CNLiveEnvironment-285b96a559574e49fe0e1a40c03a5a8e61e9c7c4a29ad91844f8d551bbfe0deb--HeadermapTaskProducer>","<target-CNLiveEnvironment-285b96a559574e49fe0e1a40c03a5a8e61e9c7c4a29ad91844f8d551bbfe0deb--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveEnvironment/CNLiveEnvironment.framework/Info.plist"]}
"target-CNLiveEnvironment-285b96a559574e49fe0e1a40c03a5a8e61e9c7c4a29ad91844f8d551bbfe0deb-:Debug:Touch /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveEnvironment/CNLiveEnvironment.framework": {"tool":"shell","description":"Touch /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveEnvironment/CNLiveEnvironment.framework","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveEnvironment/CNLiveEnvironment.framework","<target-CNLiveEnvironment-285b96a559574e49fe0e1a40c03a5a8e61e9c7c4a29ad91844f8d551bbfe0deb--Barrier-RegisterExecutionPolicyException>","<target-CNLiveEnvironment-285b96a559574e49fe0e1a40c03a5a8e61e9c7c4a29ad91844f8d551bbfe0deb--entry>"],"outputs":["<Touch /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveEnvironment/CNLiveEnvironment.framework>"],"args":["/usr/bin/touch","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveEnvironment/CNLiveEnvironment.framework"],"env":{},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","signature":"5d9d21fd544bb60122fbb33d25c8763b"}
"target-CNLiveEnvironment-285b96a559574e49fe0e1a40c03a5a8e61e9c7c4a29ad91844f8d551bbfe0deb-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveEnvironment.build/CNLiveEnvironment-all-non-framework-target-headers.hmap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveEnvironment.build/CNLiveEnvironment-all-non-framework-target-headers.hmap","inputs":["<target-CNLiveEnvironment-285b96a559574e49fe0e1a40c03a5a8e61e9c7c4a29ad91844f8d551bbfe0deb--GeneratedFilesTaskProducer>","<target-CNLiveEnvironment-285b96a559574e49fe0e1a40c03a5a8e61e9c7c4a29ad91844f8d551bbfe0deb--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveEnvironment.build/CNLiveEnvironment-all-non-framework-target-headers.hmap"]}
"target-CNLiveEnvironment-285b96a559574e49fe0e1a40c03a5a8e61e9c7c4a29ad91844f8d551bbfe0deb-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveEnvironment.build/CNLiveEnvironment-all-target-headers.hmap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveEnvironment.build/CNLiveEnvironment-all-target-headers.hmap","inputs":["<target-CNLiveEnvironment-285b96a559574e49fe0e1a40c03a5a8e61e9c7c4a29ad91844f8d551bbfe0deb--GeneratedFilesTaskProducer>","<target-CNLiveEnvironment-285b96a559574e49fe0e1a40c03a5a8e61e9c7c4a29ad91844f8d551bbfe0deb--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveEnvironment.build/CNLiveEnvironment-all-target-headers.hmap"]}
"target-CNLiveEnvironment-285b96a559574e49fe0e1a40c03a5a8e61e9c7c4a29ad91844f8d551bbfe0deb-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveEnvironment.build/CNLiveEnvironment-generated-files.hmap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveEnvironment.build/CNLiveEnvironment-generated-files.hmap","inputs":["<target-CNLiveEnvironment-285b96a559574e49fe0e1a40c03a5a8e61e9c7c4a29ad91844f8d551bbfe0deb--GeneratedFilesTaskProducer>","<target-CNLiveEnvironment-285b96a559574e49fe0e1a40c03a5a8e61e9c7c4a29ad91844f8d551bbfe0deb--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveEnvironment.build/CNLiveEnvironment-generated-files.hmap"]}
"target-CNLiveEnvironment-285b96a559574e49fe0e1a40c03a5a8e61e9c7c4a29ad91844f8d551bbfe0deb-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveEnvironment.build/CNLiveEnvironment-own-target-headers.hmap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveEnvironment.build/CNLiveEnvironment-own-target-headers.hmap","inputs":["<target-CNLiveEnvironment-285b96a559574e49fe0e1a40c03a5a8e61e9c7c4a29ad91844f8d551bbfe0deb--GeneratedFilesTaskProducer>","<target-CNLiveEnvironment-285b96a559574e49fe0e1a40c03a5a8e61e9c7c4a29ad91844f8d551bbfe0deb--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveEnvironment.build/CNLiveEnvironment-own-target-headers.hmap"]}
"target-CNLiveEnvironment-285b96a559574e49fe0e1a40c03a5a8e61e9c7c4a29ad91844f8d551bbfe0deb-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveEnvironment.build/CNLiveEnvironment-project-headers.hmap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveEnvironment.build/CNLiveEnvironment-project-headers.hmap","inputs":["<target-CNLiveEnvironment-285b96a559574e49fe0e1a40c03a5a8e61e9c7c4a29ad91844f8d551bbfe0deb--GeneratedFilesTaskProducer>","<target-CNLiveEnvironment-285b96a559574e49fe0e1a40c03a5a8e61e9c7c4a29ad91844f8d551bbfe0deb--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveEnvironment.build/CNLiveEnvironment-project-headers.hmap"]}
"target-CNLiveEnvironment-285b96a559574e49fe0e1a40c03a5a8e61e9c7c4a29ad91844f8d551bbfe0deb-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveEnvironment.build/CNLiveEnvironment.hmap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveEnvironment.build/CNLiveEnvironment.hmap","inputs":["<target-CNLiveEnvironment-285b96a559574e49fe0e1a40c03a5a8e61e9c7c4a29ad91844f8d551bbfe0deb--GeneratedFilesTaskProducer>","<target-CNLiveEnvironment-285b96a559574e49fe0e1a40c03a5a8e61e9c7c4a29ad91844f8d551bbfe0deb--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveEnvironment.build/CNLiveEnvironment.hmap"]}
"target-CNLiveEnvironment-285b96a559574e49fe0e1a40c03a5a8e61e9c7c4a29ad91844f8d551bbfe0deb-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveEnvironment.build/DerivedSources/CNLiveEnvironment_vers.c": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveEnvironment.build/DerivedSources/CNLiveEnvironment_vers.c","inputs":["<target-CNLiveEnvironment-285b96a559574e49fe0e1a40c03a5a8e61e9c7c4a29ad91844f8d551bbfe0deb--phase0-copy-headers>","<target-CNLiveEnvironment-285b96a559574e49fe0e1a40c03a5a8e61e9c7c4a29ad91844f8d551bbfe0deb--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveEnvironment.build/DerivedSources/CNLiveEnvironment_vers.c"]}
"target-CNLiveEnvironment-285b96a559574e49fe0e1a40c03a5a8e61e9c7c4a29ad91844f8d551bbfe0deb-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveEnvironment.build/Objects-normal/arm64/CNLiveEnvironment.LinkFileList": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveEnvironment.build/Objects-normal/arm64/CNLiveEnvironment.LinkFileList","inputs":["<target-CNLiveEnvironment-285b96a559574e49fe0e1a40c03a5a8e61e9c7c4a29ad91844f8d551bbfe0deb--phase0-copy-headers>","<target-CNLiveEnvironment-285b96a559574e49fe0e1a40c03a5a8e61e9c7c4a29ad91844f8d551bbfe0deb--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveEnvironment.build/Objects-normal/arm64/CNLiveEnvironment.LinkFileList"]}
"target-CNLiveEnvironment-285b96a559574e49fe0e1a40c03a5a8e61e9c7c4a29ad91844f8d551bbfe0deb-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveEnvironment.build/Objects-normal/armv7/CNLiveEnvironment.LinkFileList": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveEnvironment.build/Objects-normal/armv7/CNLiveEnvironment.LinkFileList","inputs":["<target-CNLiveEnvironment-285b96a559574e49fe0e1a40c03a5a8e61e9c7c4a29ad91844f8d551bbfe0deb--phase0-copy-headers>","<target-CNLiveEnvironment-285b96a559574e49fe0e1a40c03a5a8e61e9c7c4a29ad91844f8d551bbfe0deb--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveEnvironment.build/Objects-normal/armv7/CNLiveEnvironment.LinkFileList"]}
"target-CNLiveEnvironment-285b96a559574e49fe0e1a40c03a5a8e61e9c7c4a29ad91844f8d551bbfe0deb-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveEnvironment.build/all-product-headers.yaml": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveEnvironment.build/all-product-headers.yaml","inputs":["<target-CNLiveEnvironment-285b96a559574e49fe0e1a40c03a5a8e61e9c7c4a29ad91844f8d551bbfe0deb--GeneratedFilesTaskProducer>","<target-CNLiveEnvironment-285b96a559574e49fe0e1a40c03a5a8e61e9c7c4a29ad91844f8d551bbfe0deb--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveEnvironment.build/all-product-headers.yaml"]}
"target-CNLiveEnvironment-285b96a559574e49fe0e1a40c03a5a8e61e9c7c4a29ad91844f8d551bbfe0deb-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveEnvironment.build/module.modulemap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveEnvironment.build/module.modulemap","inputs":["<target-CNLiveEnvironment-285b96a559574e49fe0e1a40c03a5a8e61e9c7c4a29ad91844f8d551bbfe0deb--HeadermapTaskProducer>","<target-CNLiveEnvironment-285b96a559574e49fe0e1a40c03a5a8e61e9c7c4a29ad91844f8d551bbfe0deb--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveEnvironment.build/module.modulemap"]}
"target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CAEmitterLayerView.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/CNLiveIntegralModule/Classes/View/CAEmitterLayerView.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CAEmitterLayerView.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/CNLiveIntegralModule/Classes/View/CAEmitterLayerView.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveIntegralModule/CNLiveIntegralModule-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/CNLiveIntegralModule/Classes/View/CAEmitterLayerView.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/module.modulemap","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--generated-headers>","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--phase0-copy-headers>","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CAEmitterLayerView.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=CNLiveIntegralModule","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/CNLiveIntegralModule-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/CNLiveIntegralModule-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/CNLiveIntegralModule-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/CNLiveIntegralModule-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Headers/Public","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveCommonClass","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveEnvironment","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveTripartiteManagement","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserAgreementManager","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserManagement","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveIntegralModule/CNLiveIntegralModule-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CAEmitterLayerView.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CAEmitterLayerView.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/CNLiveIntegralModule/Classes/View/CAEmitterLayerView.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CAEmitterLayerView.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CAEmitterLayerView.d"],"deps-style":"makefile","signature":"feb2301a023ef3235ee9941c18ef1dd6"}
"target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveAddScoreManager.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/CNLiveIntegralModule/Classes/Tools/CNLiveAddScoreManager.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveAddScoreManager.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/CNLiveIntegralModule/Classes/Tools/CNLiveAddScoreManager.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveIntegralModule/CNLiveIntegralModule-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/CNLiveIntegralModule/Classes/Tools/CNLiveAddScoreManager.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/module.modulemap","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--generated-headers>","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--phase0-copy-headers>","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveAddScoreManager.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=CNLiveIntegralModule","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/CNLiveIntegralModule-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/CNLiveIntegralModule-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/CNLiveIntegralModule-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/CNLiveIntegralModule-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Headers/Public","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveCommonClass","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveEnvironment","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveTripartiteManagement","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserAgreementManager","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserManagement","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveIntegralModule/CNLiveIntegralModule-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveAddScoreManager.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveAddScoreManager.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/CNLiveIntegralModule/Classes/Tools/CNLiveAddScoreManager.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveAddScoreManager.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveAddScoreManager.d"],"deps-style":"makefile","signature":"501e3e2f1dafa5ffe58f01b6d6545728"}
"target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveAddScoreView.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/CNLiveIntegralModule/Classes/Tools/CNLiveAddScoreView.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveAddScoreView.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/CNLiveIntegralModule/Classes/Tools/CNLiveAddScoreView.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveIntegralModule/CNLiveIntegralModule-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/CNLiveIntegralModule/Classes/Tools/CNLiveAddScoreView.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/module.modulemap","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--generated-headers>","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--phase0-copy-headers>","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveAddScoreView.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=CNLiveIntegralModule","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/CNLiveIntegralModule-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/CNLiveIntegralModule-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/CNLiveIntegralModule-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/CNLiveIntegralModule-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Headers/Public","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveCommonClass","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveEnvironment","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveTripartiteManagement","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserAgreementManager","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserManagement","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveIntegralModule/CNLiveIntegralModule-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveAddScoreView.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveAddScoreView.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/CNLiveIntegralModule/Classes/Tools/CNLiveAddScoreView.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveAddScoreView.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveAddScoreView.d"],"deps-style":"makefile","signature":"70ba0e30322c6f2aebd3e72e23a75e32"}
"target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveGoldWhereaboutsView.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/CNLiveIntegralModule/Classes/Tools/CNLiveGoldWhereaboutsView.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveGoldWhereaboutsView.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/CNLiveIntegralModule/Classes/Tools/CNLiveGoldWhereaboutsView.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveIntegralModule/CNLiveIntegralModule-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/CNLiveIntegralModule/Classes/Tools/CNLiveGoldWhereaboutsView.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/module.modulemap","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--generated-headers>","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--phase0-copy-headers>","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveGoldWhereaboutsView.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=CNLiveIntegralModule","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/CNLiveIntegralModule-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/CNLiveIntegralModule-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/CNLiveIntegralModule-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/CNLiveIntegralModule-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Headers/Public","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveCommonClass","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveEnvironment","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveTripartiteManagement","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserAgreementManager","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserManagement","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveIntegralModule/CNLiveIntegralModule-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveGoldWhereaboutsView.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveGoldWhereaboutsView.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/CNLiveIntegralModule/Classes/Tools/CNLiveGoldWhereaboutsView.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveGoldWhereaboutsView.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveGoldWhereaboutsView.d"],"deps-style":"makefile","signature":"cb512129e71de97f82a05412974c1db9"}
"target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveIntegralDetailsController.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/CNLiveIntegralModule/Classes/Controller/CNLiveIntegralDetailsController.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveIntegralDetailsController.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/CNLiveIntegralModule/Classes/Controller/CNLiveIntegralDetailsController.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveIntegralModule/CNLiveIntegralModule-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/CNLiveIntegralModule/Classes/Controller/CNLiveIntegralDetailsController.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/module.modulemap","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--generated-headers>","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--phase0-copy-headers>","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveIntegralDetailsController.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=CNLiveIntegralModule","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/CNLiveIntegralModule-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/CNLiveIntegralModule-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/CNLiveIntegralModule-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/CNLiveIntegralModule-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Headers/Public","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveCommonClass","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveEnvironment","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveTripartiteManagement","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserAgreementManager","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserManagement","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveIntegralModule/CNLiveIntegralModule-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveIntegralDetailsController.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveIntegralDetailsController.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/CNLiveIntegralModule/Classes/Controller/CNLiveIntegralDetailsController.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveIntegralDetailsController.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveIntegralDetailsController.d"],"deps-style":"makefile","signature":"c487ffc6f07e5085befd8ad1b778ea7d"}
"target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveIntegralDetailsTableViewCell.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/CNLiveIntegralModule/Classes/View/CNLiveIntegralDetailsTableViewCell.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveIntegralDetailsTableViewCell.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/CNLiveIntegralModule/Classes/View/CNLiveIntegralDetailsTableViewCell.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveIntegralModule/CNLiveIntegralModule-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/CNLiveIntegralModule/Classes/View/CNLiveIntegralDetailsTableViewCell.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/module.modulemap","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--generated-headers>","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--phase0-copy-headers>","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveIntegralDetailsTableViewCell.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=CNLiveIntegralModule","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/CNLiveIntegralModule-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/CNLiveIntegralModule-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/CNLiveIntegralModule-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/CNLiveIntegralModule-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Headers/Public","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveCommonClass","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveEnvironment","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveTripartiteManagement","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserAgreementManager","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserManagement","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveIntegralModule/CNLiveIntegralModule-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveIntegralDetailsTableViewCell.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveIntegralDetailsTableViewCell.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/CNLiveIntegralModule/Classes/View/CNLiveIntegralDetailsTableViewCell.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveIntegralDetailsTableViewCell.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveIntegralDetailsTableViewCell.d"],"deps-style":"makefile","signature":"b4a43e65c4c070b8f5c7a9f692602f6d"}
"target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveIntegralModule-dummy.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveIntegralModule/CNLiveIntegralModule-dummy.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveIntegralModule-dummy.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveIntegralModule/CNLiveIntegralModule-dummy.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveIntegralModule/CNLiveIntegralModule-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveIntegralModule/CNLiveIntegralModule-dummy.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/module.modulemap","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--generated-headers>","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--phase0-copy-headers>","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveIntegralModule-dummy.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=CNLiveIntegralModule","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/CNLiveIntegralModule-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/CNLiveIntegralModule-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/CNLiveIntegralModule-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/CNLiveIntegralModule-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Headers/Public","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveCommonClass","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveEnvironment","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveTripartiteManagement","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserAgreementManager","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserManagement","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveIntegralModule/CNLiveIntegralModule-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveIntegralModule-dummy.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveIntegralModule-dummy.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveIntegralModule/CNLiveIntegralModule-dummy.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveIntegralModule-dummy.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveIntegralModule-dummy.d"],"deps-style":"makefile","signature":"bee420ac090125afc6f5a7b18b2ee1b7"}
"target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveIntegralModule.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/CNLiveIntegralModule/Classes/Module/CNLiveIntegralModule.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveIntegralModule.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/CNLiveIntegralModule/Classes/Module/CNLiveIntegralModule.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveIntegralModule/CNLiveIntegralModule-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/CNLiveIntegralModule/Classes/Module/CNLiveIntegralModule.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/module.modulemap","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--generated-headers>","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--phase0-copy-headers>","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveIntegralModule.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=CNLiveIntegralModule","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/CNLiveIntegralModule-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/CNLiveIntegralModule-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/CNLiveIntegralModule-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/CNLiveIntegralModule-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Headers/Public","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveCommonClass","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveEnvironment","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveTripartiteManagement","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserAgreementManager","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserManagement","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveIntegralModule/CNLiveIntegralModule-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveIntegralModule.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveIntegralModule.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/CNLiveIntegralModule/Classes/Module/CNLiveIntegralModule.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveIntegralModule.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveIntegralModule.d"],"deps-style":"makefile","signature":"99cebcf7a190d8f42716f004829317f4"}
"target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveIntegralModule_vers.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/DerivedSources/CNLiveIntegralModule_vers.c normal arm64 c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveIntegralModule_vers.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/DerivedSources/CNLiveIntegralModule_vers.c normal arm64 c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/DerivedSources/CNLiveIntegralModule_vers.c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/module.modulemap","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--generated-headers>","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--phase0-copy-headers>","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveIntegralModule_vers.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c","-target","arm64-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=CNLiveIntegralModule","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Werror=deprecated-objc-isa-usage","-Werror=objc-root-class","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/CNLiveIntegralModule-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/CNLiveIntegralModule-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/CNLiveIntegralModule-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/CNLiveIntegralModule-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Headers/Public","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveCommonClass","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveEnvironment","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveTripartiteManagement","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserAgreementManager","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserManagement","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveIntegralModule_vers.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveIntegralModule_vers.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/DerivedSources/CNLiveIntegralModule_vers.c","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveIntegralModule_vers.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveIntegralModule_vers.d"],"deps-style":"makefile","signature":"1f1fa41bba5314a695e831d70cbac7bb"}
"target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveIntegralNavigationBar.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/CNLiveIntegralModule/Classes/View/CNLiveIntegralNavigationBar.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveIntegralNavigationBar.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/CNLiveIntegralModule/Classes/View/CNLiveIntegralNavigationBar.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveIntegralModule/CNLiveIntegralModule-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/CNLiveIntegralModule/Classes/View/CNLiveIntegralNavigationBar.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/module.modulemap","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--generated-headers>","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--phase0-copy-headers>","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveIntegralNavigationBar.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=CNLiveIntegralModule","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/CNLiveIntegralModule-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/CNLiveIntegralModule-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/CNLiveIntegralModule-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/CNLiveIntegralModule-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Headers/Public","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveCommonClass","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveEnvironment","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveTripartiteManagement","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserAgreementManager","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserManagement","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveIntegralModule/CNLiveIntegralModule-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveIntegralNavigationBar.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveIntegralNavigationBar.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/CNLiveIntegralModule/Classes/View/CNLiveIntegralNavigationBar.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveIntegralNavigationBar.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveIntegralNavigationBar.d"],"deps-style":"makefile","signature":"3e5b3047824b96b90db2780fe0af71ff"}
"target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveIntegralService.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/CNLiveIntegralModule/Classes/Module/CNLiveIntegralService.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveIntegralService.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/CNLiveIntegralModule/Classes/Module/CNLiveIntegralService.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveIntegralModule/CNLiveIntegralModule-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/CNLiveIntegralModule/Classes/Module/CNLiveIntegralService.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/module.modulemap","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--generated-headers>","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--phase0-copy-headers>","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveIntegralService.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=CNLiveIntegralModule","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/CNLiveIntegralModule-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/CNLiveIntegralModule-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/CNLiveIntegralModule-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/CNLiveIntegralModule-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Headers/Public","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveCommonClass","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveEnvironment","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveTripartiteManagement","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserAgreementManager","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserManagement","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveIntegralModule/CNLiveIntegralModule-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveIntegralService.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveIntegralService.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/CNLiveIntegralModule/Classes/Module/CNLiveIntegralService.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveIntegralService.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveIntegralService.d"],"deps-style":"makefile","signature":"f97165bc0ba27b9e5a4bb135afbf8783"}
"target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveRewardRulesView.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/CNLiveIntegralModule/Classes/Tools/CNLiveRewardRulesView.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveRewardRulesView.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/CNLiveIntegralModule/Classes/Tools/CNLiveRewardRulesView.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveIntegralModule/CNLiveIntegralModule-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/CNLiveIntegralModule/Classes/Tools/CNLiveRewardRulesView.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/module.modulemap","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--generated-headers>","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--phase0-copy-headers>","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveRewardRulesView.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=CNLiveIntegralModule","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/CNLiveIntegralModule-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/CNLiveIntegralModule-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/CNLiveIntegralModule-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/CNLiveIntegralModule-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Headers/Public","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveCommonClass","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveEnvironment","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveTripartiteManagement","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserAgreementManager","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserManagement","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveIntegralModule/CNLiveIntegralModule-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveRewardRulesView.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveRewardRulesView.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/CNLiveIntegralModule/Classes/Tools/CNLiveRewardRulesView.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveRewardRulesView.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveRewardRulesView.d"],"deps-style":"makefile","signature":"4fb1b45208cbc2760b05c87254c40376"}
"target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveScoreModel.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/CNLiveIntegralModule/Classes/Model/CNLiveScoreModel.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveScoreModel.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/CNLiveIntegralModule/Classes/Model/CNLiveScoreModel.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveIntegralModule/CNLiveIntegralModule-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/CNLiveIntegralModule/Classes/Model/CNLiveScoreModel.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/module.modulemap","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--generated-headers>","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--phase0-copy-headers>","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveScoreModel.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=CNLiveIntegralModule","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/CNLiveIntegralModule-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/CNLiveIntegralModule-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/CNLiveIntegralModule-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/CNLiveIntegralModule-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Headers/Public","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveCommonClass","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveEnvironment","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveTripartiteManagement","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserAgreementManager","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserManagement","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveIntegralModule/CNLiveIntegralModule-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveScoreModel.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveScoreModel.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/CNLiveIntegralModule/Classes/Model/CNLiveScoreModel.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveScoreModel.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveScoreModel.d"],"deps-style":"makefile","signature":"fc16520d900658685eacd51fa344041d"}
"target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveSignInButtonSelectView.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/CNLiveIntegralModule/Classes/View/CNLiveSignInButtonSelectView.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveSignInButtonSelectView.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/CNLiveIntegralModule/Classes/View/CNLiveSignInButtonSelectView.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveIntegralModule/CNLiveIntegralModule-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/CNLiveIntegralModule/Classes/View/CNLiveSignInButtonSelectView.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/module.modulemap","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--generated-headers>","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--phase0-copy-headers>","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveSignInButtonSelectView.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=CNLiveIntegralModule","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/CNLiveIntegralModule-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/CNLiveIntegralModule-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/CNLiveIntegralModule-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/CNLiveIntegralModule-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Headers/Public","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveCommonClass","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveEnvironment","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveTripartiteManagement","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserAgreementManager","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserManagement","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveIntegralModule/CNLiveIntegralModule-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveSignInButtonSelectView.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveSignInButtonSelectView.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/CNLiveIntegralModule/Classes/View/CNLiveSignInButtonSelectView.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveSignInButtonSelectView.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveSignInButtonSelectView.d"],"deps-style":"makefile","signature":"6beb5a7c8f64f2431fd7aa884436ae92"}
"target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveSignInButtonView.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/CNLiveIntegralModule/Classes/View/CNLiveSignInButtonView.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveSignInButtonView.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/CNLiveIntegralModule/Classes/View/CNLiveSignInButtonView.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveIntegralModule/CNLiveIntegralModule-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/CNLiveIntegralModule/Classes/View/CNLiveSignInButtonView.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/module.modulemap","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--generated-headers>","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--phase0-copy-headers>","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveSignInButtonView.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=CNLiveIntegralModule","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/CNLiveIntegralModule-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/CNLiveIntegralModule-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/CNLiveIntegralModule-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/CNLiveIntegralModule-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Headers/Public","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveCommonClass","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveEnvironment","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveTripartiteManagement","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserAgreementManager","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserManagement","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveIntegralModule/CNLiveIntegralModule-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveSignInButtonView.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveSignInButtonView.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/CNLiveIntegralModule/Classes/View/CNLiveSignInButtonView.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveSignInButtonView.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveSignInButtonView.d"],"deps-style":"makefile","signature":"c1c47ac9c18bf419b01b8c45c487fc09"}
"target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveSignInView.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/CNLiveIntegralModule/Classes/Tools/CNLiveSignInView.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveSignInView.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/CNLiveIntegralModule/Classes/Tools/CNLiveSignInView.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveIntegralModule/CNLiveIntegralModule-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/CNLiveIntegralModule/Classes/Tools/CNLiveSignInView.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/module.modulemap","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--generated-headers>","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--phase0-copy-headers>","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveSignInView.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=CNLiveIntegralModule","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/CNLiveIntegralModule-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/CNLiveIntegralModule-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/CNLiveIntegralModule-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/CNLiveIntegralModule-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Headers/Public","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveCommonClass","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveEnvironment","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveTripartiteManagement","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserAgreementManager","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserManagement","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveIntegralModule/CNLiveIntegralModule-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveSignInView.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveSignInView.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/CNLiveIntegralModule/Classes/Tools/CNLiveSignInView.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveSignInView.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveSignInView.d"],"deps-style":"makefile","signature":"843ba187a07aba2ec4bfaf4cc33a9e81"}
"target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveTaskListController.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/CNLiveIntegralModule/Classes/Controller/CNLiveTaskListController.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveTaskListController.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/CNLiveIntegralModule/Classes/Controller/CNLiveTaskListController.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveIntegralModule/CNLiveIntegralModule-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/CNLiveIntegralModule/Classes/Controller/CNLiveTaskListController.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/module.modulemap","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--generated-headers>","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--phase0-copy-headers>","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveTaskListController.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=CNLiveIntegralModule","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/CNLiveIntegralModule-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/CNLiveIntegralModule-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/CNLiveIntegralModule-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/CNLiveIntegralModule-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Headers/Public","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveCommonClass","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveEnvironment","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveTripartiteManagement","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserAgreementManager","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserManagement","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveIntegralModule/CNLiveIntegralModule-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveTaskListController.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveTaskListController.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/CNLiveIntegralModule/Classes/Controller/CNLiveTaskListController.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveTaskListController.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveTaskListController.d"],"deps-style":"makefile","signature":"1ce5ebd249affff751456de7458262b0"}
"target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveTaskListHeaderView.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/CNLiveIntegralModule/Classes/View/CNLiveTaskListHeaderView.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveTaskListHeaderView.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/CNLiveIntegralModule/Classes/View/CNLiveTaskListHeaderView.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveIntegralModule/CNLiveIntegralModule-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/CNLiveIntegralModule/Classes/View/CNLiveTaskListHeaderView.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/module.modulemap","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--generated-headers>","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--phase0-copy-headers>","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveTaskListHeaderView.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=CNLiveIntegralModule","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/CNLiveIntegralModule-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/CNLiveIntegralModule-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/CNLiveIntegralModule-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/CNLiveIntegralModule-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Headers/Public","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveCommonClass","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveEnvironment","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveTripartiteManagement","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserAgreementManager","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserManagement","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveIntegralModule/CNLiveIntegralModule-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveTaskListHeaderView.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveTaskListHeaderView.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/CNLiveIntegralModule/Classes/View/CNLiveTaskListHeaderView.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveTaskListHeaderView.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveTaskListHeaderView.d"],"deps-style":"makefile","signature":"688eb7e8776965c1b3f84441d78867eb"}
"target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveTaskListModel.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/CNLiveIntegralModule/Classes/Model/CNLiveTaskListModel.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveTaskListModel.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/CNLiveIntegralModule/Classes/Model/CNLiveTaskListModel.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveIntegralModule/CNLiveIntegralModule-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/CNLiveIntegralModule/Classes/Model/CNLiveTaskListModel.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/module.modulemap","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--generated-headers>","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--phase0-copy-headers>","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveTaskListModel.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=CNLiveIntegralModule","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/CNLiveIntegralModule-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/CNLiveIntegralModule-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/CNLiveIntegralModule-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/CNLiveIntegralModule-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Headers/Public","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveCommonClass","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveEnvironment","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveTripartiteManagement","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserAgreementManager","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserManagement","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveIntegralModule/CNLiveIntegralModule-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveTaskListModel.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveTaskListModel.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/CNLiveIntegralModule/Classes/Model/CNLiveTaskListModel.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveTaskListModel.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveTaskListModel.d"],"deps-style":"makefile","signature":"73856cabf2442e1b2a93eccc8048eab9"}
"target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveTaskListSectionHeaderView.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/CNLiveIntegralModule/Classes/View/CNLiveTaskListSectionHeaderView.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveTaskListSectionHeaderView.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/CNLiveIntegralModule/Classes/View/CNLiveTaskListSectionHeaderView.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveIntegralModule/CNLiveIntegralModule-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/CNLiveIntegralModule/Classes/View/CNLiveTaskListSectionHeaderView.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/module.modulemap","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--generated-headers>","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--phase0-copy-headers>","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveTaskListSectionHeaderView.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=CNLiveIntegralModule","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/CNLiveIntegralModule-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/CNLiveIntegralModule-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/CNLiveIntegralModule-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/CNLiveIntegralModule-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Headers/Public","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveCommonClass","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveEnvironment","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveTripartiteManagement","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserAgreementManager","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserManagement","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveIntegralModule/CNLiveIntegralModule-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveTaskListSectionHeaderView.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveTaskListSectionHeaderView.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/CNLiveIntegralModule/Classes/View/CNLiveTaskListSectionHeaderView.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveTaskListSectionHeaderView.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveTaskListSectionHeaderView.d"],"deps-style":"makefile","signature":"07634ecc4b40e97716f23f03d8b4a440"}
"target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveTaskListTableViewCell.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/CNLiveIntegralModule/Classes/View/CNLiveTaskListTableViewCell.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveTaskListTableViewCell.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/CNLiveIntegralModule/Classes/View/CNLiveTaskListTableViewCell.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveIntegralModule/CNLiveIntegralModule-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/CNLiveIntegralModule/Classes/View/CNLiveTaskListTableViewCell.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/module.modulemap","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--generated-headers>","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--phase0-copy-headers>","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveTaskListTableViewCell.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=CNLiveIntegralModule","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/CNLiveIntegralModule-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/CNLiveIntegralModule-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/CNLiveIntegralModule-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/CNLiveIntegralModule-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Headers/Public","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveCommonClass","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveEnvironment","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveTripartiteManagement","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserAgreementManager","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserManagement","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveIntegralModule/CNLiveIntegralModule-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveTaskListTableViewCell.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveTaskListTableViewCell.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/CNLiveIntegralModule/Classes/View/CNLiveTaskListTableViewCell.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveTaskListTableViewCell.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveTaskListTableViewCell.d"],"deps-style":"makefile","signature":"7170238455d2e31657422cbd8e3fc565"}
"target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CAEmitterLayerView.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/CNLiveIntegralModule/Classes/View/CAEmitterLayerView.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CAEmitterLayerView.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/CNLiveIntegralModule/Classes/View/CAEmitterLayerView.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveIntegralModule/CNLiveIntegralModule-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/CNLiveIntegralModule/Classes/View/CAEmitterLayerView.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/module.modulemap","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--generated-headers>","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--phase0-copy-headers>","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CAEmitterLayerView.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=CNLiveIntegralModule","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/CNLiveIntegralModule-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/CNLiveIntegralModule-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/CNLiveIntegralModule-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/CNLiveIntegralModule-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Headers/Public","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveCommonClass","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveEnvironment","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveTripartiteManagement","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserAgreementManager","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserManagement","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveIntegralModule/CNLiveIntegralModule-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CAEmitterLayerView.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CAEmitterLayerView.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/CNLiveIntegralModule/Classes/View/CAEmitterLayerView.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CAEmitterLayerView.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CAEmitterLayerView.d"],"deps-style":"makefile","signature":"f0ff47f3816331d65ca539a1c594269f"}
"target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveAddScoreManager.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/CNLiveIntegralModule/Classes/Tools/CNLiveAddScoreManager.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveAddScoreManager.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/CNLiveIntegralModule/Classes/Tools/CNLiveAddScoreManager.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveIntegralModule/CNLiveIntegralModule-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/CNLiveIntegralModule/Classes/Tools/CNLiveAddScoreManager.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/module.modulemap","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--generated-headers>","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--phase0-copy-headers>","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveAddScoreManager.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=CNLiveIntegralModule","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/CNLiveIntegralModule-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/CNLiveIntegralModule-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/CNLiveIntegralModule-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/CNLiveIntegralModule-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Headers/Public","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveCommonClass","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveEnvironment","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveTripartiteManagement","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserAgreementManager","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserManagement","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveIntegralModule/CNLiveIntegralModule-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveAddScoreManager.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveAddScoreManager.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/CNLiveIntegralModule/Classes/Tools/CNLiveAddScoreManager.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveAddScoreManager.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveAddScoreManager.d"],"deps-style":"makefile","signature":"aa217b9e0e07572b0ed3d7cf480b41af"}
"target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveAddScoreView.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/CNLiveIntegralModule/Classes/Tools/CNLiveAddScoreView.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveAddScoreView.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/CNLiveIntegralModule/Classes/Tools/CNLiveAddScoreView.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveIntegralModule/CNLiveIntegralModule-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/CNLiveIntegralModule/Classes/Tools/CNLiveAddScoreView.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/module.modulemap","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--generated-headers>","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--phase0-copy-headers>","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveAddScoreView.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=CNLiveIntegralModule","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/CNLiveIntegralModule-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/CNLiveIntegralModule-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/CNLiveIntegralModule-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/CNLiveIntegralModule-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Headers/Public","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveCommonClass","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveEnvironment","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveTripartiteManagement","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserAgreementManager","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserManagement","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveIntegralModule/CNLiveIntegralModule-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveAddScoreView.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveAddScoreView.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/CNLiveIntegralModule/Classes/Tools/CNLiveAddScoreView.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveAddScoreView.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveAddScoreView.d"],"deps-style":"makefile","signature":"afe9fb8bb54a9e6aed827d4dfed4bec3"}
"target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveGoldWhereaboutsView.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/CNLiveIntegralModule/Classes/Tools/CNLiveGoldWhereaboutsView.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveGoldWhereaboutsView.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/CNLiveIntegralModule/Classes/Tools/CNLiveGoldWhereaboutsView.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveIntegralModule/CNLiveIntegralModule-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/CNLiveIntegralModule/Classes/Tools/CNLiveGoldWhereaboutsView.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/module.modulemap","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--generated-headers>","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--phase0-copy-headers>","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveGoldWhereaboutsView.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=CNLiveIntegralModule","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/CNLiveIntegralModule-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/CNLiveIntegralModule-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/CNLiveIntegralModule-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/CNLiveIntegralModule-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Headers/Public","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveCommonClass","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveEnvironment","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveTripartiteManagement","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserAgreementManager","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserManagement","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveIntegralModule/CNLiveIntegralModule-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveGoldWhereaboutsView.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveGoldWhereaboutsView.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/CNLiveIntegralModule/Classes/Tools/CNLiveGoldWhereaboutsView.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveGoldWhereaboutsView.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveGoldWhereaboutsView.d"],"deps-style":"makefile","signature":"63b7f93da01979e0a48b5d223b38dd6a"}
"target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveIntegralDetailsController.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/CNLiveIntegralModule/Classes/Controller/CNLiveIntegralDetailsController.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveIntegralDetailsController.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/CNLiveIntegralModule/Classes/Controller/CNLiveIntegralDetailsController.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveIntegralModule/CNLiveIntegralModule-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/CNLiveIntegralModule/Classes/Controller/CNLiveIntegralDetailsController.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/module.modulemap","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--generated-headers>","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--phase0-copy-headers>","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveIntegralDetailsController.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=CNLiveIntegralModule","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/CNLiveIntegralModule-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/CNLiveIntegralModule-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/CNLiveIntegralModule-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/CNLiveIntegralModule-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Headers/Public","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveCommonClass","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveEnvironment","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveTripartiteManagement","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserAgreementManager","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserManagement","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveIntegralModule/CNLiveIntegralModule-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveIntegralDetailsController.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveIntegralDetailsController.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/CNLiveIntegralModule/Classes/Controller/CNLiveIntegralDetailsController.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveIntegralDetailsController.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveIntegralDetailsController.d"],"deps-style":"makefile","signature":"242c810b96043992fe5e9b538bf9af85"}
"target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveIntegralDetailsTableViewCell.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/CNLiveIntegralModule/Classes/View/CNLiveIntegralDetailsTableViewCell.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveIntegralDetailsTableViewCell.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/CNLiveIntegralModule/Classes/View/CNLiveIntegralDetailsTableViewCell.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveIntegralModule/CNLiveIntegralModule-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/CNLiveIntegralModule/Classes/View/CNLiveIntegralDetailsTableViewCell.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/module.modulemap","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--generated-headers>","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--phase0-copy-headers>","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveIntegralDetailsTableViewCell.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=CNLiveIntegralModule","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/CNLiveIntegralModule-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/CNLiveIntegralModule-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/CNLiveIntegralModule-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/CNLiveIntegralModule-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Headers/Public","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveCommonClass","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveEnvironment","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveTripartiteManagement","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserAgreementManager","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserManagement","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveIntegralModule/CNLiveIntegralModule-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveIntegralDetailsTableViewCell.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveIntegralDetailsTableViewCell.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/CNLiveIntegralModule/Classes/View/CNLiveIntegralDetailsTableViewCell.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveIntegralDetailsTableViewCell.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveIntegralDetailsTableViewCell.d"],"deps-style":"makefile","signature":"4786c81dad03b754de5e0f6ee71bcbe8"}
"target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveIntegralModule-dummy.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveIntegralModule/CNLiveIntegralModule-dummy.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveIntegralModule-dummy.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveIntegralModule/CNLiveIntegralModule-dummy.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveIntegralModule/CNLiveIntegralModule-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveIntegralModule/CNLiveIntegralModule-dummy.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/module.modulemap","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--generated-headers>","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--phase0-copy-headers>","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveIntegralModule-dummy.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=CNLiveIntegralModule","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/CNLiveIntegralModule-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/CNLiveIntegralModule-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/CNLiveIntegralModule-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/CNLiveIntegralModule-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Headers/Public","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveCommonClass","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveEnvironment","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveTripartiteManagement","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserAgreementManager","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserManagement","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveIntegralModule/CNLiveIntegralModule-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveIntegralModule-dummy.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveIntegralModule-dummy.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveIntegralModule/CNLiveIntegralModule-dummy.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveIntegralModule-dummy.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveIntegralModule-dummy.d"],"deps-style":"makefile","signature":"7c3bc0df82cc07b7832060a01095290f"}
"target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveIntegralModule.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/CNLiveIntegralModule/Classes/Module/CNLiveIntegralModule.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveIntegralModule.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/CNLiveIntegralModule/Classes/Module/CNLiveIntegralModule.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveIntegralModule/CNLiveIntegralModule-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/CNLiveIntegralModule/Classes/Module/CNLiveIntegralModule.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/module.modulemap","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--generated-headers>","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--phase0-copy-headers>","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveIntegralModule.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=CNLiveIntegralModule","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/CNLiveIntegralModule-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/CNLiveIntegralModule-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/CNLiveIntegralModule-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/CNLiveIntegralModule-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Headers/Public","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveCommonClass","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveEnvironment","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveTripartiteManagement","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserAgreementManager","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserManagement","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveIntegralModule/CNLiveIntegralModule-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveIntegralModule.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveIntegralModule.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/CNLiveIntegralModule/Classes/Module/CNLiveIntegralModule.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveIntegralModule.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveIntegralModule.d"],"deps-style":"makefile","signature":"5056b09ce72977153308f3ad3ac662ca"}
"target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveIntegralModule_vers.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/DerivedSources/CNLiveIntegralModule_vers.c normal armv7 c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveIntegralModule_vers.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/DerivedSources/CNLiveIntegralModule_vers.c normal armv7 c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/DerivedSources/CNLiveIntegralModule_vers.c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/module.modulemap","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--generated-headers>","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--phase0-copy-headers>","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveIntegralModule_vers.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c","-target","armv7-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=CNLiveIntegralModule","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Werror=deprecated-objc-isa-usage","-Werror=objc-root-class","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/CNLiveIntegralModule-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/CNLiveIntegralModule-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/CNLiveIntegralModule-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/CNLiveIntegralModule-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Headers/Public","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveCommonClass","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveEnvironment","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveTripartiteManagement","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserAgreementManager","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserManagement","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveIntegralModule_vers.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveIntegralModule_vers.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/DerivedSources/CNLiveIntegralModule_vers.c","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveIntegralModule_vers.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveIntegralModule_vers.d"],"deps-style":"makefile","signature":"423f28b5d770c7a27e123c29eb189ea5"}
"target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveIntegralNavigationBar.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/CNLiveIntegralModule/Classes/View/CNLiveIntegralNavigationBar.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveIntegralNavigationBar.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/CNLiveIntegralModule/Classes/View/CNLiveIntegralNavigationBar.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveIntegralModule/CNLiveIntegralModule-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/CNLiveIntegralModule/Classes/View/CNLiveIntegralNavigationBar.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/module.modulemap","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--generated-headers>","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--phase0-copy-headers>","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveIntegralNavigationBar.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=CNLiveIntegralModule","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/CNLiveIntegralModule-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/CNLiveIntegralModule-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/CNLiveIntegralModule-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/CNLiveIntegralModule-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Headers/Public","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveCommonClass","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveEnvironment","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveTripartiteManagement","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserAgreementManager","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserManagement","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveIntegralModule/CNLiveIntegralModule-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveIntegralNavigationBar.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveIntegralNavigationBar.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/CNLiveIntegralModule/Classes/View/CNLiveIntegralNavigationBar.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveIntegralNavigationBar.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveIntegralNavigationBar.d"],"deps-style":"makefile","signature":"9f8fcfea9572333eb23c624a26c2e71d"}
"target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveIntegralService.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/CNLiveIntegralModule/Classes/Module/CNLiveIntegralService.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveIntegralService.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/CNLiveIntegralModule/Classes/Module/CNLiveIntegralService.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveIntegralModule/CNLiveIntegralModule-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/CNLiveIntegralModule/Classes/Module/CNLiveIntegralService.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/module.modulemap","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--generated-headers>","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--phase0-copy-headers>","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveIntegralService.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=CNLiveIntegralModule","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/CNLiveIntegralModule-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/CNLiveIntegralModule-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/CNLiveIntegralModule-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/CNLiveIntegralModule-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Headers/Public","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveCommonClass","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveEnvironment","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveTripartiteManagement","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserAgreementManager","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserManagement","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveIntegralModule/CNLiveIntegralModule-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveIntegralService.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveIntegralService.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/CNLiveIntegralModule/Classes/Module/CNLiveIntegralService.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveIntegralService.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveIntegralService.d"],"deps-style":"makefile","signature":"da37db71492be24a541b6f685064f4f1"}
"target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveRewardRulesView.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/CNLiveIntegralModule/Classes/Tools/CNLiveRewardRulesView.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveRewardRulesView.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/CNLiveIntegralModule/Classes/Tools/CNLiveRewardRulesView.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveIntegralModule/CNLiveIntegralModule-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/CNLiveIntegralModule/Classes/Tools/CNLiveRewardRulesView.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/module.modulemap","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--generated-headers>","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--phase0-copy-headers>","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveRewardRulesView.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=CNLiveIntegralModule","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/CNLiveIntegralModule-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/CNLiveIntegralModule-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/CNLiveIntegralModule-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/CNLiveIntegralModule-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Headers/Public","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveCommonClass","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveEnvironment","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveTripartiteManagement","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserAgreementManager","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserManagement","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveIntegralModule/CNLiveIntegralModule-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveRewardRulesView.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveRewardRulesView.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/CNLiveIntegralModule/Classes/Tools/CNLiveRewardRulesView.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveRewardRulesView.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveRewardRulesView.d"],"deps-style":"makefile","signature":"5cba8379e56f48999acfa21ecd6016ff"}
"target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveScoreModel.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/CNLiveIntegralModule/Classes/Model/CNLiveScoreModel.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveScoreModel.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/CNLiveIntegralModule/Classes/Model/CNLiveScoreModel.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveIntegralModule/CNLiveIntegralModule-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/CNLiveIntegralModule/Classes/Model/CNLiveScoreModel.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/module.modulemap","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--generated-headers>","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--phase0-copy-headers>","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveScoreModel.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=CNLiveIntegralModule","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/CNLiveIntegralModule-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/CNLiveIntegralModule-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/CNLiveIntegralModule-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/CNLiveIntegralModule-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Headers/Public","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveCommonClass","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveEnvironment","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveTripartiteManagement","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserAgreementManager","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserManagement","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveIntegralModule/CNLiveIntegralModule-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveScoreModel.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveScoreModel.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/CNLiveIntegralModule/Classes/Model/CNLiveScoreModel.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveScoreModel.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveScoreModel.d"],"deps-style":"makefile","signature":"d86b407f9561a14e92c0709e793927b9"}
"target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveSignInButtonSelectView.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/CNLiveIntegralModule/Classes/View/CNLiveSignInButtonSelectView.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveSignInButtonSelectView.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/CNLiveIntegralModule/Classes/View/CNLiveSignInButtonSelectView.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveIntegralModule/CNLiveIntegralModule-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/CNLiveIntegralModule/Classes/View/CNLiveSignInButtonSelectView.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/module.modulemap","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--generated-headers>","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--phase0-copy-headers>","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveSignInButtonSelectView.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=CNLiveIntegralModule","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/CNLiveIntegralModule-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/CNLiveIntegralModule-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/CNLiveIntegralModule-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/CNLiveIntegralModule-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Headers/Public","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveCommonClass","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveEnvironment","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveTripartiteManagement","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserAgreementManager","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserManagement","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveIntegralModule/CNLiveIntegralModule-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveSignInButtonSelectView.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveSignInButtonSelectView.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/CNLiveIntegralModule/Classes/View/CNLiveSignInButtonSelectView.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveSignInButtonSelectView.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveSignInButtonSelectView.d"],"deps-style":"makefile","signature":"dcc43116b383106270c51e6be99b9b79"}
"target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveSignInButtonView.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/CNLiveIntegralModule/Classes/View/CNLiveSignInButtonView.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveSignInButtonView.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/CNLiveIntegralModule/Classes/View/CNLiveSignInButtonView.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveIntegralModule/CNLiveIntegralModule-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/CNLiveIntegralModule/Classes/View/CNLiveSignInButtonView.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/module.modulemap","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--generated-headers>","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--phase0-copy-headers>","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveSignInButtonView.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=CNLiveIntegralModule","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/CNLiveIntegralModule-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/CNLiveIntegralModule-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/CNLiveIntegralModule-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/CNLiveIntegralModule-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Headers/Public","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveCommonClass","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveEnvironment","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveTripartiteManagement","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserAgreementManager","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserManagement","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveIntegralModule/CNLiveIntegralModule-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveSignInButtonView.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveSignInButtonView.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/CNLiveIntegralModule/Classes/View/CNLiveSignInButtonView.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveSignInButtonView.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveSignInButtonView.d"],"deps-style":"makefile","signature":"ebbba95e03027ee7201de8382275011f"}
"target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveSignInView.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/CNLiveIntegralModule/Classes/Tools/CNLiveSignInView.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveSignInView.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/CNLiveIntegralModule/Classes/Tools/CNLiveSignInView.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveIntegralModule/CNLiveIntegralModule-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/CNLiveIntegralModule/Classes/Tools/CNLiveSignInView.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/module.modulemap","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--generated-headers>","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--phase0-copy-headers>","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveSignInView.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=CNLiveIntegralModule","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/CNLiveIntegralModule-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/CNLiveIntegralModule-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/CNLiveIntegralModule-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/CNLiveIntegralModule-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Headers/Public","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveCommonClass","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveEnvironment","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveTripartiteManagement","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserAgreementManager","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserManagement","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveIntegralModule/CNLiveIntegralModule-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveSignInView.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveSignInView.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/CNLiveIntegralModule/Classes/Tools/CNLiveSignInView.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveSignInView.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveSignInView.d"],"deps-style":"makefile","signature":"9d13d75b9b501574f60a4db70b8191c3"}
"target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveTaskListController.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/CNLiveIntegralModule/Classes/Controller/CNLiveTaskListController.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveTaskListController.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/CNLiveIntegralModule/Classes/Controller/CNLiveTaskListController.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveIntegralModule/CNLiveIntegralModule-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/CNLiveIntegralModule/Classes/Controller/CNLiveTaskListController.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/module.modulemap","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--generated-headers>","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--phase0-copy-headers>","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveTaskListController.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=CNLiveIntegralModule","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/CNLiveIntegralModule-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/CNLiveIntegralModule-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/CNLiveIntegralModule-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/CNLiveIntegralModule-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Headers/Public","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveCommonClass","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveEnvironment","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveTripartiteManagement","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserAgreementManager","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserManagement","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveIntegralModule/CNLiveIntegralModule-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveTaskListController.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveTaskListController.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/CNLiveIntegralModule/Classes/Controller/CNLiveTaskListController.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveTaskListController.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveTaskListController.d"],"deps-style":"makefile","signature":"b140be1b44b375a718042681d32376eb"}
"target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveTaskListHeaderView.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/CNLiveIntegralModule/Classes/View/CNLiveTaskListHeaderView.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveTaskListHeaderView.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/CNLiveIntegralModule/Classes/View/CNLiveTaskListHeaderView.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveIntegralModule/CNLiveIntegralModule-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/CNLiveIntegralModule/Classes/View/CNLiveTaskListHeaderView.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/module.modulemap","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--generated-headers>","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--phase0-copy-headers>","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveTaskListHeaderView.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=CNLiveIntegralModule","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/CNLiveIntegralModule-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/CNLiveIntegralModule-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/CNLiveIntegralModule-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/CNLiveIntegralModule-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Headers/Public","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveCommonClass","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveEnvironment","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveTripartiteManagement","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserAgreementManager","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserManagement","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveIntegralModule/CNLiveIntegralModule-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveTaskListHeaderView.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveTaskListHeaderView.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/CNLiveIntegralModule/Classes/View/CNLiveTaskListHeaderView.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveTaskListHeaderView.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveTaskListHeaderView.d"],"deps-style":"makefile","signature":"ca0edfe43324169c098f972f78d733fb"}
"target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveTaskListModel.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/CNLiveIntegralModule/Classes/Model/CNLiveTaskListModel.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveTaskListModel.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/CNLiveIntegralModule/Classes/Model/CNLiveTaskListModel.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveIntegralModule/CNLiveIntegralModule-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/CNLiveIntegralModule/Classes/Model/CNLiveTaskListModel.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/module.modulemap","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--generated-headers>","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--phase0-copy-headers>","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveTaskListModel.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=CNLiveIntegralModule","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/CNLiveIntegralModule-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/CNLiveIntegralModule-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/CNLiveIntegralModule-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/CNLiveIntegralModule-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Headers/Public","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveCommonClass","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveEnvironment","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveTripartiteManagement","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserAgreementManager","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserManagement","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveIntegralModule/CNLiveIntegralModule-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveTaskListModel.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveTaskListModel.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/CNLiveIntegralModule/Classes/Model/CNLiveTaskListModel.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveTaskListModel.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveTaskListModel.d"],"deps-style":"makefile","signature":"860ee38b99ae9109ddcf1369ed2cf8b8"}
"target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveTaskListSectionHeaderView.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/CNLiveIntegralModule/Classes/View/CNLiveTaskListSectionHeaderView.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveTaskListSectionHeaderView.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/CNLiveIntegralModule/Classes/View/CNLiveTaskListSectionHeaderView.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveIntegralModule/CNLiveIntegralModule-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/CNLiveIntegralModule/Classes/View/CNLiveTaskListSectionHeaderView.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/module.modulemap","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--generated-headers>","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--phase0-copy-headers>","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveTaskListSectionHeaderView.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=CNLiveIntegralModule","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/CNLiveIntegralModule-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/CNLiveIntegralModule-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/CNLiveIntegralModule-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/CNLiveIntegralModule-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Headers/Public","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveCommonClass","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveEnvironment","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveTripartiteManagement","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserAgreementManager","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserManagement","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveIntegralModule/CNLiveIntegralModule-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveTaskListSectionHeaderView.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveTaskListSectionHeaderView.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/CNLiveIntegralModule/Classes/View/CNLiveTaskListSectionHeaderView.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveTaskListSectionHeaderView.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveTaskListSectionHeaderView.d"],"deps-style":"makefile","signature":"8908d93ace005f7309874f036ee96a93"}
"target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveTaskListTableViewCell.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/CNLiveIntegralModule/Classes/View/CNLiveTaskListTableViewCell.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveTaskListTableViewCell.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/CNLiveIntegralModule/Classes/View/CNLiveTaskListTableViewCell.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveIntegralModule/CNLiveIntegralModule-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/CNLiveIntegralModule/Classes/View/CNLiveTaskListTableViewCell.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/module.modulemap","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--generated-headers>","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--phase0-copy-headers>","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveTaskListTableViewCell.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=CNLiveIntegralModule","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/CNLiveIntegralModule-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/CNLiveIntegralModule-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/CNLiveIntegralModule-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/CNLiveIntegralModule-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Headers/Public","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveCommonClass","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveEnvironment","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveTripartiteManagement","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserAgreementManager","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserManagement","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveIntegralModule/CNLiveIntegralModule-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveTaskListTableViewCell.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveTaskListTableViewCell.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/CNLiveIntegralModule/Classes/View/CNLiveTaskListTableViewCell.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveTaskListTableViewCell.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveTaskListTableViewCell.d"],"deps-style":"makefile","signature":"3abfa5cc61b525daa79c534033d1c845"}
"target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/CNLiveIntegralModule/Classes/Controller/CNLiveIntegralDetailsController.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/CNLiveIntegralModule.framework/Headers/CNLiveIntegralDetailsController.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/CNLiveIntegralModule/Classes/Controller/CNLiveIntegralDetailsController.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/CNLiveIntegralModule.framework/Headers/CNLiveIntegralDetailsController.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/CNLiveIntegralModule/Classes/Controller/CNLiveIntegralDetailsController.h/","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--HeadermapTaskProducer>","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/CNLiveIntegralModule.framework/Headers/CNLiveIntegralDetailsController.h"]}
"target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/CNLiveIntegralModule/Classes/Controller/CNLiveTaskListController.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/CNLiveIntegralModule.framework/Headers/CNLiveTaskListController.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/CNLiveIntegralModule/Classes/Controller/CNLiveTaskListController.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/CNLiveIntegralModule.framework/Headers/CNLiveTaskListController.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/CNLiveIntegralModule/Classes/Controller/CNLiveTaskListController.h/","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--HeadermapTaskProducer>","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/CNLiveIntegralModule.framework/Headers/CNLiveTaskListController.h"]}
"target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/CNLiveIntegralModule/Classes/Model/CNLiveScoreModel.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/CNLiveIntegralModule.framework/Headers/CNLiveScoreModel.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/CNLiveIntegralModule/Classes/Model/CNLiveScoreModel.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/CNLiveIntegralModule.framework/Headers/CNLiveScoreModel.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/CNLiveIntegralModule/Classes/Model/CNLiveScoreModel.h/","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--HeadermapTaskProducer>","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/CNLiveIntegralModule.framework/Headers/CNLiveScoreModel.h"]}
"target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/CNLiveIntegralModule/Classes/Model/CNLiveTaskListModel.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/CNLiveIntegralModule.framework/Headers/CNLiveTaskListModel.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/CNLiveIntegralModule/Classes/Model/CNLiveTaskListModel.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/CNLiveIntegralModule.framework/Headers/CNLiveTaskListModel.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/CNLiveIntegralModule/Classes/Model/CNLiveTaskListModel.h/","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--HeadermapTaskProducer>","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/CNLiveIntegralModule.framework/Headers/CNLiveTaskListModel.h"]}
"target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/CNLiveIntegralModule/Classes/Module/CNLiveIntegralModule.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/CNLiveIntegralModule.framework/Headers/CNLiveIntegralModule.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/CNLiveIntegralModule/Classes/Module/CNLiveIntegralModule.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/CNLiveIntegralModule.framework/Headers/CNLiveIntegralModule.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/CNLiveIntegralModule/Classes/Module/CNLiveIntegralModule.h/","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--HeadermapTaskProducer>","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/CNLiveIntegralModule.framework/Headers/CNLiveIntegralModule.h"]}
"target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/CNLiveIntegralModule/Classes/Module/CNLiveIntegralService.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/CNLiveIntegralModule.framework/Headers/CNLiveIntegralService.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/CNLiveIntegralModule/Classes/Module/CNLiveIntegralService.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/CNLiveIntegralModule.framework/Headers/CNLiveIntegralService.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/CNLiveIntegralModule/Classes/Module/CNLiveIntegralService.h/","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--HeadermapTaskProducer>","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/CNLiveIntegralModule.framework/Headers/CNLiveIntegralService.h"]}
"target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/CNLiveIntegralModule/Classes/Tools/CNLiveAddScoreManager.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/CNLiveIntegralModule.framework/Headers/CNLiveAddScoreManager.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/CNLiveIntegralModule/Classes/Tools/CNLiveAddScoreManager.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/CNLiveIntegralModule.framework/Headers/CNLiveAddScoreManager.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/CNLiveIntegralModule/Classes/Tools/CNLiveAddScoreManager.h/","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--HeadermapTaskProducer>","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/CNLiveIntegralModule.framework/Headers/CNLiveAddScoreManager.h"]}
"target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/CNLiveIntegralModule/Classes/Tools/CNLiveAddScoreView.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/CNLiveIntegralModule.framework/Headers/CNLiveAddScoreView.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/CNLiveIntegralModule/Classes/Tools/CNLiveAddScoreView.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/CNLiveIntegralModule.framework/Headers/CNLiveAddScoreView.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/CNLiveIntegralModule/Classes/Tools/CNLiveAddScoreView.h/","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--HeadermapTaskProducer>","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/CNLiveIntegralModule.framework/Headers/CNLiveAddScoreView.h"]}
"target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/CNLiveIntegralModule/Classes/Tools/CNLiveGoldWhereaboutsView.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/CNLiveIntegralModule.framework/Headers/CNLiveGoldWhereaboutsView.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/CNLiveIntegralModule/Classes/Tools/CNLiveGoldWhereaboutsView.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/CNLiveIntegralModule.framework/Headers/CNLiveGoldWhereaboutsView.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/CNLiveIntegralModule/Classes/Tools/CNLiveGoldWhereaboutsView.h/","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--HeadermapTaskProducer>","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/CNLiveIntegralModule.framework/Headers/CNLiveGoldWhereaboutsView.h"]}
"target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/CNLiveIntegralModule/Classes/Tools/CNLiveRewardRulesView.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/CNLiveIntegralModule.framework/Headers/CNLiveRewardRulesView.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/CNLiveIntegralModule/Classes/Tools/CNLiveRewardRulesView.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/CNLiveIntegralModule.framework/Headers/CNLiveRewardRulesView.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/CNLiveIntegralModule/Classes/Tools/CNLiveRewardRulesView.h/","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--HeadermapTaskProducer>","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/CNLiveIntegralModule.framework/Headers/CNLiveRewardRulesView.h"]}
"target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/CNLiveIntegralModule/Classes/Tools/CNLiveSignInView.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/CNLiveIntegralModule.framework/Headers/CNLiveSignInView.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/CNLiveIntegralModule/Classes/Tools/CNLiveSignInView.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/CNLiveIntegralModule.framework/Headers/CNLiveSignInView.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/CNLiveIntegralModule/Classes/Tools/CNLiveSignInView.h/","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--HeadermapTaskProducer>","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/CNLiveIntegralModule.framework/Headers/CNLiveSignInView.h"]}
"target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/CNLiveIntegralModule/Classes/View/CAEmitterLayerView.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/CNLiveIntegralModule.framework/Headers/CAEmitterLayerView.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/CNLiveIntegralModule/Classes/View/CAEmitterLayerView.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/CNLiveIntegralModule.framework/Headers/CAEmitterLayerView.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/CNLiveIntegralModule/Classes/View/CAEmitterLayerView.h/","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--HeadermapTaskProducer>","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/CNLiveIntegralModule.framework/Headers/CAEmitterLayerView.h"]}
"target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/CNLiveIntegralModule/Classes/View/CNLiveIntegralDetailsTableViewCell.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/CNLiveIntegralModule.framework/Headers/CNLiveIntegralDetailsTableViewCell.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/CNLiveIntegralModule/Classes/View/CNLiveIntegralDetailsTableViewCell.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/CNLiveIntegralModule.framework/Headers/CNLiveIntegralDetailsTableViewCell.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/CNLiveIntegralModule/Classes/View/CNLiveIntegralDetailsTableViewCell.h/","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--HeadermapTaskProducer>","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/CNLiveIntegralModule.framework/Headers/CNLiveIntegralDetailsTableViewCell.h"]}
"target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/CNLiveIntegralModule/Classes/View/CNLiveIntegralNavigationBar.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/CNLiveIntegralModule.framework/Headers/CNLiveIntegralNavigationBar.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/CNLiveIntegralModule/Classes/View/CNLiveIntegralNavigationBar.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/CNLiveIntegralModule.framework/Headers/CNLiveIntegralNavigationBar.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/CNLiveIntegralModule/Classes/View/CNLiveIntegralNavigationBar.h/","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--HeadermapTaskProducer>","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/CNLiveIntegralModule.framework/Headers/CNLiveIntegralNavigationBar.h"]}
"target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/CNLiveIntegralModule/Classes/View/CNLiveSignInButtonSelectView.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/CNLiveIntegralModule.framework/Headers/CNLiveSignInButtonSelectView.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/CNLiveIntegralModule/Classes/View/CNLiveSignInButtonSelectView.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/CNLiveIntegralModule.framework/Headers/CNLiveSignInButtonSelectView.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/CNLiveIntegralModule/Classes/View/CNLiveSignInButtonSelectView.h/","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--HeadermapTaskProducer>","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/CNLiveIntegralModule.framework/Headers/CNLiveSignInButtonSelectView.h"]}
"target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/CNLiveIntegralModule/Classes/View/CNLiveSignInButtonView.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/CNLiveIntegralModule.framework/Headers/CNLiveSignInButtonView.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/CNLiveIntegralModule/Classes/View/CNLiveSignInButtonView.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/CNLiveIntegralModule.framework/Headers/CNLiveSignInButtonView.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/CNLiveIntegralModule/Classes/View/CNLiveSignInButtonView.h/","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--HeadermapTaskProducer>","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/CNLiveIntegralModule.framework/Headers/CNLiveSignInButtonView.h"]}
"target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/CNLiveIntegralModule/Classes/View/CNLiveTaskListHeaderView.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/CNLiveIntegralModule.framework/Headers/CNLiveTaskListHeaderView.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/CNLiveIntegralModule/Classes/View/CNLiveTaskListHeaderView.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/CNLiveIntegralModule.framework/Headers/CNLiveTaskListHeaderView.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/CNLiveIntegralModule/Classes/View/CNLiveTaskListHeaderView.h/","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--HeadermapTaskProducer>","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/CNLiveIntegralModule.framework/Headers/CNLiveTaskListHeaderView.h"]}
"target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/CNLiveIntegralModule/Classes/View/CNLiveTaskListSectionHeaderView.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/CNLiveIntegralModule.framework/Headers/CNLiveTaskListSectionHeaderView.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/CNLiveIntegralModule/Classes/View/CNLiveTaskListSectionHeaderView.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/CNLiveIntegralModule.framework/Headers/CNLiveTaskListSectionHeaderView.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/CNLiveIntegralModule/Classes/View/CNLiveTaskListSectionHeaderView.h/","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--HeadermapTaskProducer>","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/CNLiveIntegralModule.framework/Headers/CNLiveTaskListSectionHeaderView.h"]}
"target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/CNLiveIntegralModule/Classes/View/CNLiveTaskListTableViewCell.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/CNLiveIntegralModule.framework/Headers/CNLiveTaskListTableViewCell.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/CNLiveIntegralModule/Classes/View/CNLiveTaskListTableViewCell.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/CNLiveIntegralModule.framework/Headers/CNLiveTaskListTableViewCell.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/CNLiveIntegralModule/Classes/View/CNLiveTaskListTableViewCell.h/","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--HeadermapTaskProducer>","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/CNLiveIntegralModule.framework/Headers/CNLiveTaskListTableViewCell.h"]}
"target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveIntegralModule/CNLiveIntegralModule-umbrella.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/CNLiveIntegralModule.framework/Headers/CNLiveIntegralModule-umbrella.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveIntegralModule/CNLiveIntegralModule-umbrella.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/CNLiveIntegralModule.framework/Headers/CNLiveIntegralModule-umbrella.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveIntegralModule/CNLiveIntegralModule-umbrella.h/","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--HeadermapTaskProducer>","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/CNLiveIntegralModule.framework/Headers/CNLiveIntegralModule-umbrella.h"]}
"target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285-:Debug:CpResource /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/CNLiveIntegralModule.bundle /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/CNLiveIntegralModule.framework/CNLiveIntegralModule.bundle": {"tool":"file-copy","description":"CpResource /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/CNLiveIntegralModule.bundle /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/CNLiveIntegralModule.framework/CNLiveIntegralModule.bundle","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/CNLiveIntegralModule.bundle/","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--phase1-compile-sources>","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/CNLiveIntegralModule.framework/CNLiveIntegralModule.bundle"]}
"target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285-:Debug:CreateUniversalBinary /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/CNLiveIntegralModule.framework/CNLiveIntegralModule normal armv7 arm64": {"tool":"shell","description":"CreateUniversalBinary /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/CNLiveIntegralModule.framework/CNLiveIntegralModule normal armv7 arm64","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/Binary/CNLiveIntegralModule","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/Binary/CNLiveIntegralModule","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--phase0-copy-headers>","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/CNLiveIntegralModule.framework/CNLiveIntegralModule","<Linked Binary /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/CNLiveIntegralModule.framework/CNLiveIntegralModule>"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/lipo","-create","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/Binary/CNLiveIntegralModule","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/Binary/CNLiveIntegralModule","-output","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/CNLiveIntegralModule.framework/CNLiveIntegralModule"],"env":{},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","signature":"7702be7fe179fbaa3fffc4a28df3cd10"}
"target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285-:Debug:Ditto /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/module.modulemap /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/CNLiveIntegralModule.framework/Modules/module.modulemap": {"tool":"file-copy","description":"Ditto /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/module.modulemap /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/CNLiveIntegralModule.framework/Modules/module.modulemap","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/module.modulemap/","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--HeadermapTaskProducer>","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/CNLiveIntegralModule.framework/Modules/module.modulemap"]}
"target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285-:Debug:Ld /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/Binary/CNLiveIntegralModule normal arm64": {"tool":"shell","description":"Ld /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/Binary/CNLiveIntegralModule normal arm64","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CAEmitterLayerView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveAddScoreManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveAddScoreView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveGoldWhereaboutsView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveIntegralDetailsController.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveIntegralDetailsTableViewCell.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveIntegralModule-dummy.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveIntegralModule.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveIntegralNavigationBar.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveIntegralService.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveRewardRulesView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveScoreModel.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveSignInButtonSelectView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveSignInButtonView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveSignInView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveTaskListController.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveTaskListHeaderView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveTaskListModel.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveTaskListSectionHeaderView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveTaskListTableViewCell.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveIntegralModule_vers.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveIntegralModule.LinkFileList","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--phase0-copy-headers>","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/Binary/CNLiveIntegralModule"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-target","arm64-apple-ios9.0","-dynamiclib","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-L/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveCommonClass","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveEnvironment","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveTripartiteManagement","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserAgreementManager","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserManagement","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-filelist","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveIntegralModule.LinkFileList","-install_name","@rpath/CNLiveIntegralModule.framework/CNLiveIntegralModule","-Xlinker","-rpath","-Xlinker","@executable_path/Frameworks","-Xlinker","-rpath","-Xlinker","@loader_path/Frameworks","-dead_strip","-Xlinker","-object_path_lto","-Xlinker","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveIntegralModule_lto.o","-Xlinker","-export_dynamic","-Xlinker","-no_deduplicate","-fembed-bitcode-marker","-fobjc-arc","-fobjc-link-runtime","-framework","QuartzCore","-framework","UIKit","-framework","CNLiveCommonClass","-framework","CNLiveEnvironment","-framework","CNLiveRequestBastKit","-framework","CNLiveTripartiteManagement","-framework","CNLiveUserAgreementManager","-framework","CNLiveUserManagement","-framework","Foundation","-framework","QuartzCore","-framework","UIKit","-compatibility_version","1","-current_version","1","-Xlinker","-dependency_info","-Xlinker","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveIntegralModule_dependency_info.dat","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/Binary/CNLiveIntegralModule"],"env":{},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveIntegralModule_dependency_info.dat"],"deps-style":"dependency-info","signature":"f43f7b39e92bbe2632978cb624a713cc"}
"target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285-:Debug:Ld /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/Binary/CNLiveIntegralModule normal armv7": {"tool":"shell","description":"Ld /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/Binary/CNLiveIntegralModule normal armv7","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CAEmitterLayerView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveAddScoreManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveAddScoreView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveGoldWhereaboutsView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveIntegralDetailsController.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveIntegralDetailsTableViewCell.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveIntegralModule-dummy.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveIntegralModule.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveIntegralNavigationBar.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveIntegralService.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveRewardRulesView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveScoreModel.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveSignInButtonSelectView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveSignInButtonView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveSignInView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveTaskListController.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveTaskListHeaderView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveTaskListModel.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveTaskListSectionHeaderView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveTaskListTableViewCell.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveIntegralModule_vers.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveIntegralModule.LinkFileList","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--phase0-copy-headers>","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/Binary/CNLiveIntegralModule"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-target","armv7-apple-ios9.0","-dynamiclib","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-L/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveCommonClass","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveEnvironment","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveTripartiteManagement","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserAgreementManager","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserManagement","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-filelist","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveIntegralModule.LinkFileList","-install_name","@rpath/CNLiveIntegralModule.framework/CNLiveIntegralModule","-Xlinker","-rpath","-Xlinker","@executable_path/Frameworks","-Xlinker","-rpath","-Xlinker","@loader_path/Frameworks","-dead_strip","-Xlinker","-object_path_lto","-Xlinker","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveIntegralModule_lto.o","-Xlinker","-export_dynamic","-Xlinker","-no_deduplicate","-fembed-bitcode-marker","-fobjc-arc","-fobjc-link-runtime","-framework","QuartzCore","-framework","UIKit","-framework","CNLiveCommonClass","-framework","CNLiveEnvironment","-framework","CNLiveRequestBastKit","-framework","CNLiveTripartiteManagement","-framework","CNLiveUserAgreementManager","-framework","CNLiveUserManagement","-framework","Foundation","-framework","QuartzCore","-framework","UIKit","-compatibility_version","1","-current_version","1","-Xlinker","-dependency_info","-Xlinker","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveIntegralModule_dependency_info.dat","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/Binary/CNLiveIntegralModule"],"env":{},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveIntegralModule_dependency_info.dat"],"deps-style":"dependency-info","signature":"502a2223e2b0fe359cfea9a60d29f3b4"}
"target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285-:Debug:MkDir /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/CNLiveIntegralModule.framework": {"tool":"mkdir","description":"MkDir /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/CNLiveIntegralModule.framework","inputs":["<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--start>","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/CNLiveIntegralModule.framework","<MkDir /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/CNLiveIntegralModule.framework>"]}
"target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285-:Debug:MkDir /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/CNLiveIntegralModule.framework/Headers": {"tool":"mkdir","description":"MkDir /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/CNLiveIntegralModule.framework/Headers","inputs":["<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--start>","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/CNLiveIntegralModule.framework/Headers","<MkDir /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/CNLiveIntegralModule.framework/Headers>"]}
"target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285-:Debug:ProcessInfoPlistFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/CNLiveIntegralModule.framework/Info.plist /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveIntegralModule/CNLiveIntegralModule-Info.plist": {"tool":"info-plist-processor","description":"ProcessInfoPlistFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/CNLiveIntegralModule.framework/Info.plist /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveIntegralModule/CNLiveIntegralModule-Info.plist","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveIntegralModule/CNLiveIntegralModule-Info.plist","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--HeadermapTaskProducer>","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/CNLiveIntegralModule.framework/Info.plist"]}
"target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285-:Debug:Touch /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/CNLiveIntegralModule.framework": {"tool":"shell","description":"Touch /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/CNLiveIntegralModule.framework","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/CNLiveIntegralModule.framework","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--Barrier-RegisterExecutionPolicyException>","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--entry>"],"outputs":["<Touch /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/CNLiveIntegralModule.framework>"],"args":["/usr/bin/touch","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/CNLiveIntegralModule.framework"],"env":{},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","signature":"a96375589147d8bd0763ca6e170bb418"}
"target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/CNLiveIntegralModule-all-non-framework-target-headers.hmap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/CNLiveIntegralModule-all-non-framework-target-headers.hmap","inputs":["<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--GeneratedFilesTaskProducer>","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/CNLiveIntegralModule-all-non-framework-target-headers.hmap"]}
"target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/CNLiveIntegralModule-all-target-headers.hmap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/CNLiveIntegralModule-all-target-headers.hmap","inputs":["<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--GeneratedFilesTaskProducer>","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/CNLiveIntegralModule-all-target-headers.hmap"]}
"target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/CNLiveIntegralModule-generated-files.hmap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/CNLiveIntegralModule-generated-files.hmap","inputs":["<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--GeneratedFilesTaskProducer>","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/CNLiveIntegralModule-generated-files.hmap"]}
"target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/CNLiveIntegralModule-own-target-headers.hmap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/CNLiveIntegralModule-own-target-headers.hmap","inputs":["<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--GeneratedFilesTaskProducer>","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/CNLiveIntegralModule-own-target-headers.hmap"]}
"target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/CNLiveIntegralModule-project-headers.hmap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/CNLiveIntegralModule-project-headers.hmap","inputs":["<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--GeneratedFilesTaskProducer>","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/CNLiveIntegralModule-project-headers.hmap"]}
"target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/CNLiveIntegralModule.hmap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/CNLiveIntegralModule.hmap","inputs":["<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--GeneratedFilesTaskProducer>","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/CNLiveIntegralModule.hmap"]}
"target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/DerivedSources/CNLiveIntegralModule_vers.c": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/DerivedSources/CNLiveIntegralModule_vers.c","inputs":["<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--phase0-copy-headers>","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/DerivedSources/CNLiveIntegralModule_vers.c"]}
"target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveIntegralModule.LinkFileList": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveIntegralModule.LinkFileList","inputs":["<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--phase0-copy-headers>","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/arm64/CNLiveIntegralModule.LinkFileList"]}
"target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveIntegralModule.LinkFileList": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveIntegralModule.LinkFileList","inputs":["<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--phase0-copy-headers>","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/Objects-normal/armv7/CNLiveIntegralModule.LinkFileList"]}
"target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/all-product-headers.yaml": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/all-product-headers.yaml","inputs":["<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--GeneratedFilesTaskProducer>","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/all-product-headers.yaml"]}
"target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/module.modulemap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/module.modulemap","inputs":["<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--HeadermapTaskProducer>","<target-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8e657eb4ee579e8cb3b11d2ffc659a9285--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule.build/module.modulemap"]}
"target-CNLiveIntegralModule-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8efe4e531668133d9170ede618cb4425d1-:Debug:CompileAssetCatalog /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/CNLiveIntegralModule.bundle /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/CNLiveIntegralModule/Assets/CNLiveIntegralModule.xcassets": {"tool":"shell","description":"CompileAssetCatalog /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/CNLiveIntegralModule.bundle /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/CNLiveIntegralModule/Assets/CNLiveIntegralModule.xcassets","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/CNLiveIntegralModule/Assets/CNLiveIntegralModule.xcassets/","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/CNLiveIntegralModule.bundle","<target-CNLiveIntegralModule-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8efe4e531668133d9170ede618cb4425d1--phase0-compile-sources>","<target-CNLiveIntegralModule-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8efe4e531668133d9170ede618cb4425d1--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule-CNLiveIntegralModule.build/assetcatalog_generated_info.plist","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/CNLiveIntegralModule.bundle/Assets.car"],"args":["/Applications/Xcode.app/Contents/Developer/usr/bin/actool","--output-format","human-readable-text","--notices","--warnings","--export-dependency-info","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule-CNLiveIntegralModule.build/assetcatalog_dependencies","--output-partial-info-plist","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule-CNLiveIntegralModule.build/assetcatalog_generated_info.plist","--compress-pngs","--enable-on-demand-resources","NO","--sticker-pack-identifier-prefix","org.cocoapods.CNLiveIntegralModule.sticker-pack.","--development-region","en","--target-device","iphone","--target-device","ipad","--minimum-deployment-target","9.0","--platform","iphoneos","--product-type","com.apple.product-type.bundle","--compile","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/CNLiveIntegralModule.bundle","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/CNLiveIntegralModule/Assets/CNLiveIntegralModule.xcassets"],"env":{},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","control-enabled":false,"deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule-CNLiveIntegralModule.build/assetcatalog_dependencies"],"deps-style":"dependency-info","signature":"c2652c678657f3f835f33f31d64cfee2"}
"target-CNLiveIntegralModule-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8efe4e531668133d9170ede618cb4425d1-:Debug:CpResource /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/CNLiveIntegralModule/Assets/gold_whereabouts.mp3 /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/CNLiveIntegralModule.bundle/gold_whereabouts.mp3": {"tool":"file-copy","description":"CpResource /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/CNLiveIntegralModule/Assets/gold_whereabouts.mp3 /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/CNLiveIntegralModule.bundle/gold_whereabouts.mp3","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/CNLiveIntegralModule/Assets/gold_whereabouts.mp3/","<target-CNLiveIntegralModule-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8efe4e531668133d9170ede618cb4425d1--phase0-compile-sources>","<target-CNLiveIntegralModule-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8efe4e531668133d9170ede618cb4425d1--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/CNLiveIntegralModule.bundle/gold_whereabouts.mp3"]}
"target-CNLiveIntegralModule-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8efe4e531668133d9170ede618cb4425d1-:Debug:MkDir /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/CNLiveIntegralModule.bundle": {"tool":"mkdir","description":"MkDir /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/CNLiveIntegralModule.bundle","inputs":["<target-CNLiveIntegralModule-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8efe4e531668133d9170ede618cb4425d1--start>","<target-CNLiveIntegralModule-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8efe4e531668133d9170ede618cb4425d1--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/CNLiveIntegralModule.bundle","<MkDir /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/CNLiveIntegralModule.bundle>"]}
"target-CNLiveIntegralModule-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8efe4e531668133d9170ede618cb4425d1-:Debug:ProcessInfoPlistFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/CNLiveIntegralModule.bundle/Info.plist /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveIntegralModule/ResourceBundle-CNLiveIntegralModule-CNLiveIntegralModule-Info.plist": {"tool":"info-plist-processor","description":"ProcessInfoPlistFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/CNLiveIntegralModule.bundle/Info.plist /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveIntegralModule/ResourceBundle-CNLiveIntegralModule-CNLiveIntegralModule-Info.plist","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveIntegralModule/ResourceBundle-CNLiveIntegralModule-CNLiveIntegralModule-Info.plist","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule-CNLiveIntegralModule.build/assetcatalog_generated_info.plist","<target-CNLiveIntegralModule-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8efe4e531668133d9170ede618cb4425d1--HeadermapTaskProducer>","<target-CNLiveIntegralModule-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8efe4e531668133d9170ede618cb4425d1--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/CNLiveIntegralModule.bundle/Info.plist"]}
"target-CNLiveIntegralModule-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8efe4e531668133d9170ede618cb4425d1-:Debug:Touch /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/CNLiveIntegralModule.bundle": {"tool":"shell","description":"Touch /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/CNLiveIntegralModule.bundle","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/CNLiveIntegralModule.bundle","<target-CNLiveIntegralModule-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8efe4e531668133d9170ede618cb4425d1--Barrier-RegisterExecutionPolicyException>","<target-CNLiveIntegralModule-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8efe4e531668133d9170ede618cb4425d1--entry>"],"outputs":["<Touch /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/CNLiveIntegralModule.bundle>"],"args":["/usr/bin/touch","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/CNLiveIntegralModule.bundle"],"env":{},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","signature":"0efe3a6ddd40e143e9fb371e6ef562d4"}
"target-CNLiveIntegralModule-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8efe4e531668133d9170ede618cb4425d1-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule-CNLiveIntegralModule.build/CNLiveIntegralModule-all-non-framework-target-headers.hmap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule-CNLiveIntegralModule.build/CNLiveIntegralModule-all-non-framework-target-headers.hmap","inputs":["<target-CNLiveIntegralModule-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8efe4e531668133d9170ede618cb4425d1--GeneratedFilesTaskProducer>","<target-CNLiveIntegralModule-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8efe4e531668133d9170ede618cb4425d1--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule-CNLiveIntegralModule.build/CNLiveIntegralModule-all-non-framework-target-headers.hmap"]}
"target-CNLiveIntegralModule-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8efe4e531668133d9170ede618cb4425d1-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule-CNLiveIntegralModule.build/CNLiveIntegralModule-all-target-headers.hmap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule-CNLiveIntegralModule.build/CNLiveIntegralModule-all-target-headers.hmap","inputs":["<target-CNLiveIntegralModule-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8efe4e531668133d9170ede618cb4425d1--GeneratedFilesTaskProducer>","<target-CNLiveIntegralModule-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8efe4e531668133d9170ede618cb4425d1--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule-CNLiveIntegralModule.build/CNLiveIntegralModule-all-target-headers.hmap"]}
"target-CNLiveIntegralModule-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8efe4e531668133d9170ede618cb4425d1-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule-CNLiveIntegralModule.build/CNLiveIntegralModule-generated-files.hmap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule-CNLiveIntegralModule.build/CNLiveIntegralModule-generated-files.hmap","inputs":["<target-CNLiveIntegralModule-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8efe4e531668133d9170ede618cb4425d1--GeneratedFilesTaskProducer>","<target-CNLiveIntegralModule-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8efe4e531668133d9170ede618cb4425d1--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule-CNLiveIntegralModule.build/CNLiveIntegralModule-generated-files.hmap"]}
"target-CNLiveIntegralModule-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8efe4e531668133d9170ede618cb4425d1-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule-CNLiveIntegralModule.build/CNLiveIntegralModule-own-target-headers.hmap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule-CNLiveIntegralModule.build/CNLiveIntegralModule-own-target-headers.hmap","inputs":["<target-CNLiveIntegralModule-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8efe4e531668133d9170ede618cb4425d1--GeneratedFilesTaskProducer>","<target-CNLiveIntegralModule-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8efe4e531668133d9170ede618cb4425d1--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule-CNLiveIntegralModule.build/CNLiveIntegralModule-own-target-headers.hmap"]}
"target-CNLiveIntegralModule-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8efe4e531668133d9170ede618cb4425d1-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule-CNLiveIntegralModule.build/CNLiveIntegralModule-project-headers.hmap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule-CNLiveIntegralModule.build/CNLiveIntegralModule-project-headers.hmap","inputs":["<target-CNLiveIntegralModule-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8efe4e531668133d9170ede618cb4425d1--GeneratedFilesTaskProducer>","<target-CNLiveIntegralModule-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8efe4e531668133d9170ede618cb4425d1--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule-CNLiveIntegralModule.build/CNLiveIntegralModule-project-headers.hmap"]}
"target-CNLiveIntegralModule-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8efe4e531668133d9170ede618cb4425d1-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule-CNLiveIntegralModule.build/CNLiveIntegralModule.hmap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule-CNLiveIntegralModule.build/CNLiveIntegralModule.hmap","inputs":["<target-CNLiveIntegralModule-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8efe4e531668133d9170ede618cb4425d1--GeneratedFilesTaskProducer>","<target-CNLiveIntegralModule-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8efe4e531668133d9170ede618cb4425d1--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule-CNLiveIntegralModule.build/CNLiveIntegralModule.hmap"]}
"target-CNLiveIntegralModule-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8efe4e531668133d9170ede618cb4425d1-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule-CNLiveIntegralModule.build/all-product-headers.yaml": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule-CNLiveIntegralModule.build/all-product-headers.yaml","inputs":["<target-CNLiveIntegralModule-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8efe4e531668133d9170ede618cb4425d1--GeneratedFilesTaskProducer>","<target-CNLiveIntegralModule-CNLiveIntegralModule-285b96a559574e49fe0e1a40c03a5a8efe4e531668133d9170ede618cb4425d1--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveIntegralModule-CNLiveIntegralModule.build/all-product-headers.yaml"]}
"target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/arm64/CNLiveNetworkAgent.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveRequestBastKit/CNLiveRequestBastKit/Classes/CNLiveNetworkAgent.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/arm64/CNLiveNetworkAgent.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveRequestBastKit/CNLiveRequestBastKit/Classes/CNLiveNetworkAgent.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveRequestBastKit/CNLiveRequestBastKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveRequestBastKit/CNLiveRequestBastKit/Classes/CNLiveNetworkAgent.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/module.modulemap","<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--generated-headers>","<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--phase0-copy-headers>","<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/arm64/CNLiveNetworkAgent.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=CNLiveRequestBastKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/CNLiveRequestBastKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/CNLiveRequestBastKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/CNLiveRequestBastKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/CNLiveRequestBastKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveRequestBastKit/CNLiveRequestBastKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/arm64/CNLiveNetworkAgent.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/arm64/CNLiveNetworkAgent.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveRequestBastKit/CNLiveRequestBastKit/Classes/CNLiveNetworkAgent.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/arm64/CNLiveNetworkAgent.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/arm64/CNLiveNetworkAgent.d"],"deps-style":"makefile","signature":"4adece37e53859249e8e3c47c5d4fe8b"}
"target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/arm64/CNLiveNetworkBaseRequest.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveRequestBastKit/CNLiveRequestBastKit/Classes/CNLiveNetworkBaseRequest.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/arm64/CNLiveNetworkBaseRequest.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveRequestBastKit/CNLiveRequestBastKit/Classes/CNLiveNetworkBaseRequest.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveRequestBastKit/CNLiveRequestBastKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveRequestBastKit/CNLiveRequestBastKit/Classes/CNLiveNetworkBaseRequest.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/module.modulemap","<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--generated-headers>","<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--phase0-copy-headers>","<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/arm64/CNLiveNetworkBaseRequest.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=CNLiveRequestBastKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/CNLiveRequestBastKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/CNLiveRequestBastKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/CNLiveRequestBastKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/CNLiveRequestBastKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveRequestBastKit/CNLiveRequestBastKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/arm64/CNLiveNetworkBaseRequest.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/arm64/CNLiveNetworkBaseRequest.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveRequestBastKit/CNLiveRequestBastKit/Classes/CNLiveNetworkBaseRequest.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/arm64/CNLiveNetworkBaseRequest.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/arm64/CNLiveNetworkBaseRequest.d"],"deps-style":"makefile","signature":"e0ce4e9f14f679e0fe7a0e454ea3a464"}
"target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/arm64/CNLiveNetworkConfig.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveRequestBastKit/CNLiveRequestBastKit/Classes/CNLiveNetworkConfig.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/arm64/CNLiveNetworkConfig.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveRequestBastKit/CNLiveRequestBastKit/Classes/CNLiveNetworkConfig.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveRequestBastKit/CNLiveRequestBastKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveRequestBastKit/CNLiveRequestBastKit/Classes/CNLiveNetworkConfig.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/module.modulemap","<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--generated-headers>","<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--phase0-copy-headers>","<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/arm64/CNLiveNetworkConfig.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=CNLiveRequestBastKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/CNLiveRequestBastKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/CNLiveRequestBastKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/CNLiveRequestBastKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/CNLiveRequestBastKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveRequestBastKit/CNLiveRequestBastKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/arm64/CNLiveNetworkConfig.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/arm64/CNLiveNetworkConfig.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveRequestBastKit/CNLiveRequestBastKit/Classes/CNLiveNetworkConfig.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/arm64/CNLiveNetworkConfig.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/arm64/CNLiveNetworkConfig.d"],"deps-style":"makefile","signature":"fd0cfa160b0416a825a64a764b324787"}
"target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/arm64/CNLiveNetworkLogManager.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveRequestBastKit/CNLiveRequestBastKit/Classes/CNLiveNetworkLogManager.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/arm64/CNLiveNetworkLogManager.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveRequestBastKit/CNLiveRequestBastKit/Classes/CNLiveNetworkLogManager.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveRequestBastKit/CNLiveRequestBastKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveRequestBastKit/CNLiveRequestBastKit/Classes/CNLiveNetworkLogManager.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/module.modulemap","<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--generated-headers>","<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--phase0-copy-headers>","<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/arm64/CNLiveNetworkLogManager.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=CNLiveRequestBastKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/CNLiveRequestBastKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/CNLiveRequestBastKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/CNLiveRequestBastKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/CNLiveRequestBastKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveRequestBastKit/CNLiveRequestBastKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/arm64/CNLiveNetworkLogManager.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/arm64/CNLiveNetworkLogManager.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveRequestBastKit/CNLiveRequestBastKit/Classes/CNLiveNetworkLogManager.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/arm64/CNLiveNetworkLogManager.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/arm64/CNLiveNetworkLogManager.d"],"deps-style":"makefile","signature":"ea92332732c1ab0561c2a9868a294a3a"}
"target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/arm64/CNLiveNetworkLogWebViewController.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveRequestBastKit/CNLiveRequestBastKit/Classes/CNLiveNetworkLogWebViewController.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/arm64/CNLiveNetworkLogWebViewController.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveRequestBastKit/CNLiveRequestBastKit/Classes/CNLiveNetworkLogWebViewController.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveRequestBastKit/CNLiveRequestBastKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveRequestBastKit/CNLiveRequestBastKit/Classes/CNLiveNetworkLogWebViewController.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/module.modulemap","<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--generated-headers>","<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--phase0-copy-headers>","<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/arm64/CNLiveNetworkLogWebViewController.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=CNLiveRequestBastKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/CNLiveRequestBastKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/CNLiveRequestBastKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/CNLiveRequestBastKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/CNLiveRequestBastKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveRequestBastKit/CNLiveRequestBastKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/arm64/CNLiveNetworkLogWebViewController.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/arm64/CNLiveNetworkLogWebViewController.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveRequestBastKit/CNLiveRequestBastKit/Classes/CNLiveNetworkLogWebViewController.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/arm64/CNLiveNetworkLogWebViewController.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/arm64/CNLiveNetworkLogWebViewController.d"],"deps-style":"makefile","signature":"6fcb0430a30fe7c864b58746156500da"}
"target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/arm64/CNLiveNetworkPrivate.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveRequestBastKit/CNLiveRequestBastKit/Classes/CNLiveNetworkPrivate.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/arm64/CNLiveNetworkPrivate.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveRequestBastKit/CNLiveRequestBastKit/Classes/CNLiveNetworkPrivate.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveRequestBastKit/CNLiveRequestBastKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveRequestBastKit/CNLiveRequestBastKit/Classes/CNLiveNetworkPrivate.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/module.modulemap","<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--generated-headers>","<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--phase0-copy-headers>","<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/arm64/CNLiveNetworkPrivate.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=CNLiveRequestBastKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/CNLiveRequestBastKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/CNLiveRequestBastKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/CNLiveRequestBastKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/CNLiveRequestBastKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveRequestBastKit/CNLiveRequestBastKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/arm64/CNLiveNetworkPrivate.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/arm64/CNLiveNetworkPrivate.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveRequestBastKit/CNLiveRequestBastKit/Classes/CNLiveNetworkPrivate.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/arm64/CNLiveNetworkPrivate.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/arm64/CNLiveNetworkPrivate.d"],"deps-style":"makefile","signature":"1ae4d216ff68058238ba25804daffaa8"}
"target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/arm64/CNLiveNetworkRequest.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveRequestBastKit/CNLiveRequestBastKit/Classes/CNLiveNetworkRequest.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/arm64/CNLiveNetworkRequest.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveRequestBastKit/CNLiveRequestBastKit/Classes/CNLiveNetworkRequest.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveRequestBastKit/CNLiveRequestBastKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveRequestBastKit/CNLiveRequestBastKit/Classes/CNLiveNetworkRequest.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/module.modulemap","<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--generated-headers>","<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--phase0-copy-headers>","<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/arm64/CNLiveNetworkRequest.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=CNLiveRequestBastKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/CNLiveRequestBastKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/CNLiveRequestBastKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/CNLiveRequestBastKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/CNLiveRequestBastKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveRequestBastKit/CNLiveRequestBastKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/arm64/CNLiveNetworkRequest.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/arm64/CNLiveNetworkRequest.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveRequestBastKit/CNLiveRequestBastKit/Classes/CNLiveNetworkRequest.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/arm64/CNLiveNetworkRequest.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/arm64/CNLiveNetworkRequest.d"],"deps-style":"makefile","signature":"61106113694f884a7697dfe6e4625126"}
"target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/arm64/CNLiveNetworkSessionManager.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveRequestBastKit/CNLiveRequestBastKit/Classes/CNLiveNetworkSessionManager.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/arm64/CNLiveNetworkSessionManager.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveRequestBastKit/CNLiveRequestBastKit/Classes/CNLiveNetworkSessionManager.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveRequestBastKit/CNLiveRequestBastKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveRequestBastKit/CNLiveRequestBastKit/Classes/CNLiveNetworkSessionManager.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/module.modulemap","<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--generated-headers>","<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--phase0-copy-headers>","<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/arm64/CNLiveNetworkSessionManager.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=CNLiveRequestBastKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/CNLiveRequestBastKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/CNLiveRequestBastKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/CNLiveRequestBastKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/CNLiveRequestBastKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveRequestBastKit/CNLiveRequestBastKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/arm64/CNLiveNetworkSessionManager.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/arm64/CNLiveNetworkSessionManager.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveRequestBastKit/CNLiveRequestBastKit/Classes/CNLiveNetworkSessionManager.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/arm64/CNLiveNetworkSessionManager.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/arm64/CNLiveNetworkSessionManager.d"],"deps-style":"makefile","signature":"cf5da3e73447bcdb868aa9001389656b"}
"target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/arm64/CNLiveNetworking.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveRequestBastKit/CNLiveRequestBastKit/Classes/CNLiveNetworking.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/arm64/CNLiveNetworking.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveRequestBastKit/CNLiveRequestBastKit/Classes/CNLiveNetworking.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveRequestBastKit/CNLiveRequestBastKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveRequestBastKit/CNLiveRequestBastKit/Classes/CNLiveNetworking.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/module.modulemap","<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--generated-headers>","<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--phase0-copy-headers>","<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/arm64/CNLiveNetworking.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=CNLiveRequestBastKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/CNLiveRequestBastKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/CNLiveRequestBastKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/CNLiveRequestBastKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/CNLiveRequestBastKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveRequestBastKit/CNLiveRequestBastKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/arm64/CNLiveNetworking.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/arm64/CNLiveNetworking.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveRequestBastKit/CNLiveRequestBastKit/Classes/CNLiveNetworking.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/arm64/CNLiveNetworking.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/arm64/CNLiveNetworking.d"],"deps-style":"makefile","signature":"c89e0e49cd4173760edd564e622a6ccd"}
"target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/arm64/CNLiveRequestBastKit-dummy.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveRequestBastKit/CNLiveRequestBastKit-dummy.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/arm64/CNLiveRequestBastKit-dummy.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveRequestBastKit/CNLiveRequestBastKit-dummy.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveRequestBastKit/CNLiveRequestBastKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveRequestBastKit/CNLiveRequestBastKit-dummy.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/module.modulemap","<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--generated-headers>","<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--phase0-copy-headers>","<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/arm64/CNLiveRequestBastKit-dummy.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=CNLiveRequestBastKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/CNLiveRequestBastKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/CNLiveRequestBastKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/CNLiveRequestBastKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/CNLiveRequestBastKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveRequestBastKit/CNLiveRequestBastKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/arm64/CNLiveRequestBastKit-dummy.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/arm64/CNLiveRequestBastKit-dummy.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveRequestBastKit/CNLiveRequestBastKit-dummy.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/arm64/CNLiveRequestBastKit-dummy.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/arm64/CNLiveRequestBastKit-dummy.d"],"deps-style":"makefile","signature":"b154d5b52e1cb026967f7ad728fe64f9"}
"target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/arm64/CNLiveRequestBastKit_vers.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/DerivedSources/CNLiveRequestBastKit_vers.c normal arm64 c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/arm64/CNLiveRequestBastKit_vers.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/DerivedSources/CNLiveRequestBastKit_vers.c normal arm64 c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/DerivedSources/CNLiveRequestBastKit_vers.c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/module.modulemap","<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--generated-headers>","<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--phase0-copy-headers>","<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/arm64/CNLiveRequestBastKit_vers.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c","-target","arm64-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=CNLiveRequestBastKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Werror=deprecated-objc-isa-usage","-Werror=objc-root-class","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/CNLiveRequestBastKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/CNLiveRequestBastKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/CNLiveRequestBastKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/CNLiveRequestBastKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/arm64/CNLiveRequestBastKit_vers.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/arm64/CNLiveRequestBastKit_vers.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/DerivedSources/CNLiveRequestBastKit_vers.c","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/arm64/CNLiveRequestBastKit_vers.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/arm64/CNLiveRequestBastKit_vers.d"],"deps-style":"makefile","signature":"09a583e97a9a25c52ace6fe49bfdc788"}
"target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/armv7/CNLiveNetworkAgent.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveRequestBastKit/CNLiveRequestBastKit/Classes/CNLiveNetworkAgent.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/armv7/CNLiveNetworkAgent.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveRequestBastKit/CNLiveRequestBastKit/Classes/CNLiveNetworkAgent.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveRequestBastKit/CNLiveRequestBastKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveRequestBastKit/CNLiveRequestBastKit/Classes/CNLiveNetworkAgent.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/module.modulemap","<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--generated-headers>","<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--phase0-copy-headers>","<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/armv7/CNLiveNetworkAgent.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=CNLiveRequestBastKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/CNLiveRequestBastKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/CNLiveRequestBastKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/CNLiveRequestBastKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/CNLiveRequestBastKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveRequestBastKit/CNLiveRequestBastKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/armv7/CNLiveNetworkAgent.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/armv7/CNLiveNetworkAgent.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveRequestBastKit/CNLiveRequestBastKit/Classes/CNLiveNetworkAgent.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/armv7/CNLiveNetworkAgent.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/armv7/CNLiveNetworkAgent.d"],"deps-style":"makefile","signature":"f65dfedce314f0133d4afba2e2c006b0"}
"target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/armv7/CNLiveNetworkBaseRequest.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveRequestBastKit/CNLiveRequestBastKit/Classes/CNLiveNetworkBaseRequest.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/armv7/CNLiveNetworkBaseRequest.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveRequestBastKit/CNLiveRequestBastKit/Classes/CNLiveNetworkBaseRequest.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveRequestBastKit/CNLiveRequestBastKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveRequestBastKit/CNLiveRequestBastKit/Classes/CNLiveNetworkBaseRequest.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/module.modulemap","<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--generated-headers>","<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--phase0-copy-headers>","<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/armv7/CNLiveNetworkBaseRequest.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=CNLiveRequestBastKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/CNLiveRequestBastKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/CNLiveRequestBastKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/CNLiveRequestBastKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/CNLiveRequestBastKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveRequestBastKit/CNLiveRequestBastKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/armv7/CNLiveNetworkBaseRequest.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/armv7/CNLiveNetworkBaseRequest.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveRequestBastKit/CNLiveRequestBastKit/Classes/CNLiveNetworkBaseRequest.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/armv7/CNLiveNetworkBaseRequest.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/armv7/CNLiveNetworkBaseRequest.d"],"deps-style":"makefile","signature":"6b2468761f73dece6db2f9eb945e3e00"}
"target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/armv7/CNLiveNetworkConfig.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveRequestBastKit/CNLiveRequestBastKit/Classes/CNLiveNetworkConfig.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/armv7/CNLiveNetworkConfig.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveRequestBastKit/CNLiveRequestBastKit/Classes/CNLiveNetworkConfig.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveRequestBastKit/CNLiveRequestBastKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveRequestBastKit/CNLiveRequestBastKit/Classes/CNLiveNetworkConfig.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/module.modulemap","<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--generated-headers>","<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--phase0-copy-headers>","<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/armv7/CNLiveNetworkConfig.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=CNLiveRequestBastKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/CNLiveRequestBastKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/CNLiveRequestBastKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/CNLiveRequestBastKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/CNLiveRequestBastKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveRequestBastKit/CNLiveRequestBastKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/armv7/CNLiveNetworkConfig.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/armv7/CNLiveNetworkConfig.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveRequestBastKit/CNLiveRequestBastKit/Classes/CNLiveNetworkConfig.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/armv7/CNLiveNetworkConfig.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/armv7/CNLiveNetworkConfig.d"],"deps-style":"makefile","signature":"25a9d1285978bc468c770ff9f9d09af1"}
"target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/armv7/CNLiveNetworkLogManager.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveRequestBastKit/CNLiveRequestBastKit/Classes/CNLiveNetworkLogManager.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/armv7/CNLiveNetworkLogManager.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveRequestBastKit/CNLiveRequestBastKit/Classes/CNLiveNetworkLogManager.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveRequestBastKit/CNLiveRequestBastKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveRequestBastKit/CNLiveRequestBastKit/Classes/CNLiveNetworkLogManager.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/module.modulemap","<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--generated-headers>","<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--phase0-copy-headers>","<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/armv7/CNLiveNetworkLogManager.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=CNLiveRequestBastKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/CNLiveRequestBastKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/CNLiveRequestBastKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/CNLiveRequestBastKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/CNLiveRequestBastKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveRequestBastKit/CNLiveRequestBastKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/armv7/CNLiveNetworkLogManager.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/armv7/CNLiveNetworkLogManager.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveRequestBastKit/CNLiveRequestBastKit/Classes/CNLiveNetworkLogManager.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/armv7/CNLiveNetworkLogManager.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/armv7/CNLiveNetworkLogManager.d"],"deps-style":"makefile","signature":"4cd79409667dcb10591a131f2733c30a"}
"target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/armv7/CNLiveNetworkLogWebViewController.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveRequestBastKit/CNLiveRequestBastKit/Classes/CNLiveNetworkLogWebViewController.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/armv7/CNLiveNetworkLogWebViewController.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveRequestBastKit/CNLiveRequestBastKit/Classes/CNLiveNetworkLogWebViewController.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveRequestBastKit/CNLiveRequestBastKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveRequestBastKit/CNLiveRequestBastKit/Classes/CNLiveNetworkLogWebViewController.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/module.modulemap","<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--generated-headers>","<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--phase0-copy-headers>","<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/armv7/CNLiveNetworkLogWebViewController.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=CNLiveRequestBastKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/CNLiveRequestBastKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/CNLiveRequestBastKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/CNLiveRequestBastKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/CNLiveRequestBastKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveRequestBastKit/CNLiveRequestBastKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/armv7/CNLiveNetworkLogWebViewController.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/armv7/CNLiveNetworkLogWebViewController.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveRequestBastKit/CNLiveRequestBastKit/Classes/CNLiveNetworkLogWebViewController.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/armv7/CNLiveNetworkLogWebViewController.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/armv7/CNLiveNetworkLogWebViewController.d"],"deps-style":"makefile","signature":"fb1bf81c8be12904dc4c85452e56ee52"}
"target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/armv7/CNLiveNetworkPrivate.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveRequestBastKit/CNLiveRequestBastKit/Classes/CNLiveNetworkPrivate.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/armv7/CNLiveNetworkPrivate.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveRequestBastKit/CNLiveRequestBastKit/Classes/CNLiveNetworkPrivate.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveRequestBastKit/CNLiveRequestBastKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveRequestBastKit/CNLiveRequestBastKit/Classes/CNLiveNetworkPrivate.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/module.modulemap","<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--generated-headers>","<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--phase0-copy-headers>","<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/armv7/CNLiveNetworkPrivate.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=CNLiveRequestBastKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/CNLiveRequestBastKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/CNLiveRequestBastKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/CNLiveRequestBastKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/CNLiveRequestBastKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveRequestBastKit/CNLiveRequestBastKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/armv7/CNLiveNetworkPrivate.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/armv7/CNLiveNetworkPrivate.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveRequestBastKit/CNLiveRequestBastKit/Classes/CNLiveNetworkPrivate.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/armv7/CNLiveNetworkPrivate.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/armv7/CNLiveNetworkPrivate.d"],"deps-style":"makefile","signature":"e08943cb43f7fb1296d19e841d32217d"}
"target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/armv7/CNLiveNetworkRequest.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveRequestBastKit/CNLiveRequestBastKit/Classes/CNLiveNetworkRequest.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/armv7/CNLiveNetworkRequest.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveRequestBastKit/CNLiveRequestBastKit/Classes/CNLiveNetworkRequest.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveRequestBastKit/CNLiveRequestBastKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveRequestBastKit/CNLiveRequestBastKit/Classes/CNLiveNetworkRequest.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/module.modulemap","<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--generated-headers>","<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--phase0-copy-headers>","<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/armv7/CNLiveNetworkRequest.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=CNLiveRequestBastKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/CNLiveRequestBastKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/CNLiveRequestBastKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/CNLiveRequestBastKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/CNLiveRequestBastKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveRequestBastKit/CNLiveRequestBastKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/armv7/CNLiveNetworkRequest.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/armv7/CNLiveNetworkRequest.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveRequestBastKit/CNLiveRequestBastKit/Classes/CNLiveNetworkRequest.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/armv7/CNLiveNetworkRequest.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/armv7/CNLiveNetworkRequest.d"],"deps-style":"makefile","signature":"e6fc33b149a93318399d0cd4fc9584c1"}
"target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/armv7/CNLiveNetworkSessionManager.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveRequestBastKit/CNLiveRequestBastKit/Classes/CNLiveNetworkSessionManager.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/armv7/CNLiveNetworkSessionManager.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveRequestBastKit/CNLiveRequestBastKit/Classes/CNLiveNetworkSessionManager.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveRequestBastKit/CNLiveRequestBastKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveRequestBastKit/CNLiveRequestBastKit/Classes/CNLiveNetworkSessionManager.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/module.modulemap","<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--generated-headers>","<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--phase0-copy-headers>","<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/armv7/CNLiveNetworkSessionManager.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=CNLiveRequestBastKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/CNLiveRequestBastKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/CNLiveRequestBastKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/CNLiveRequestBastKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/CNLiveRequestBastKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveRequestBastKit/CNLiveRequestBastKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/armv7/CNLiveNetworkSessionManager.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/armv7/CNLiveNetworkSessionManager.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveRequestBastKit/CNLiveRequestBastKit/Classes/CNLiveNetworkSessionManager.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/armv7/CNLiveNetworkSessionManager.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/armv7/CNLiveNetworkSessionManager.d"],"deps-style":"makefile","signature":"39ce471d6c4915eeb61ecf9496e62c8c"}
"target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/armv7/CNLiveNetworking.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveRequestBastKit/CNLiveRequestBastKit/Classes/CNLiveNetworking.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/armv7/CNLiveNetworking.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveRequestBastKit/CNLiveRequestBastKit/Classes/CNLiveNetworking.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveRequestBastKit/CNLiveRequestBastKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveRequestBastKit/CNLiveRequestBastKit/Classes/CNLiveNetworking.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/module.modulemap","<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--generated-headers>","<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--phase0-copy-headers>","<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/armv7/CNLiveNetworking.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=CNLiveRequestBastKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/CNLiveRequestBastKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/CNLiveRequestBastKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/CNLiveRequestBastKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/CNLiveRequestBastKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveRequestBastKit/CNLiveRequestBastKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/armv7/CNLiveNetworking.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/armv7/CNLiveNetworking.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveRequestBastKit/CNLiveRequestBastKit/Classes/CNLiveNetworking.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/armv7/CNLiveNetworking.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/armv7/CNLiveNetworking.d"],"deps-style":"makefile","signature":"eea463e41b90ffb6e30158abc237e3aa"}
"target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/armv7/CNLiveRequestBastKit-dummy.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveRequestBastKit/CNLiveRequestBastKit-dummy.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/armv7/CNLiveRequestBastKit-dummy.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveRequestBastKit/CNLiveRequestBastKit-dummy.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveRequestBastKit/CNLiveRequestBastKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveRequestBastKit/CNLiveRequestBastKit-dummy.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/module.modulemap","<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--generated-headers>","<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--phase0-copy-headers>","<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/armv7/CNLiveRequestBastKit-dummy.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=CNLiveRequestBastKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/CNLiveRequestBastKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/CNLiveRequestBastKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/CNLiveRequestBastKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/CNLiveRequestBastKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveRequestBastKit/CNLiveRequestBastKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/armv7/CNLiveRequestBastKit-dummy.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/armv7/CNLiveRequestBastKit-dummy.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveRequestBastKit/CNLiveRequestBastKit-dummy.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/armv7/CNLiveRequestBastKit-dummy.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/armv7/CNLiveRequestBastKit-dummy.d"],"deps-style":"makefile","signature":"4e7ae596cda35a7563c563a380305079"}
"target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/armv7/CNLiveRequestBastKit_vers.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/DerivedSources/CNLiveRequestBastKit_vers.c normal armv7 c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/armv7/CNLiveRequestBastKit_vers.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/DerivedSources/CNLiveRequestBastKit_vers.c normal armv7 c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/DerivedSources/CNLiveRequestBastKit_vers.c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/module.modulemap","<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--generated-headers>","<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--phase0-copy-headers>","<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/armv7/CNLiveRequestBastKit_vers.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c","-target","armv7-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=CNLiveRequestBastKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Werror=deprecated-objc-isa-usage","-Werror=objc-root-class","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/CNLiveRequestBastKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/CNLiveRequestBastKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/CNLiveRequestBastKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/CNLiveRequestBastKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/armv7/CNLiveRequestBastKit_vers.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/armv7/CNLiveRequestBastKit_vers.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/DerivedSources/CNLiveRequestBastKit_vers.c","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/armv7/CNLiveRequestBastKit_vers.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/armv7/CNLiveRequestBastKit_vers.d"],"deps-style":"makefile","signature":"e628ba3a552ca15f5763f462bdb08c2f"}
"target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveRequestBastKit/CNLiveRequestBastKit/Classes/CNLiveNetworkAgent.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit/CNLiveRequestBastKit.framework/Headers/CNLiveNetworkAgent.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveRequestBastKit/CNLiveRequestBastKit/Classes/CNLiveNetworkAgent.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit/CNLiveRequestBastKit.framework/Headers/CNLiveNetworkAgent.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveRequestBastKit/CNLiveRequestBastKit/Classes/CNLiveNetworkAgent.h/","<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--HeadermapTaskProducer>","<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit/CNLiveRequestBastKit.framework/Headers/CNLiveNetworkAgent.h"]}
"target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveRequestBastKit/CNLiveRequestBastKit/Classes/CNLiveNetworkBaseRequest.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit/CNLiveRequestBastKit.framework/Headers/CNLiveNetworkBaseRequest.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveRequestBastKit/CNLiveRequestBastKit/Classes/CNLiveNetworkBaseRequest.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit/CNLiveRequestBastKit.framework/Headers/CNLiveNetworkBaseRequest.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveRequestBastKit/CNLiveRequestBastKit/Classes/CNLiveNetworkBaseRequest.h/","<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--HeadermapTaskProducer>","<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit/CNLiveRequestBastKit.framework/Headers/CNLiveNetworkBaseRequest.h"]}
"target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveRequestBastKit/CNLiveRequestBastKit/Classes/CNLiveNetworkConfig.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit/CNLiveRequestBastKit.framework/Headers/CNLiveNetworkConfig.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveRequestBastKit/CNLiveRequestBastKit/Classes/CNLiveNetworkConfig.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit/CNLiveRequestBastKit.framework/Headers/CNLiveNetworkConfig.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveRequestBastKit/CNLiveRequestBastKit/Classes/CNLiveNetworkConfig.h/","<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--HeadermapTaskProducer>","<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit/CNLiveRequestBastKit.framework/Headers/CNLiveNetworkConfig.h"]}
"target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveRequestBastKit/CNLiveRequestBastKit/Classes/CNLiveNetworkEnum.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit/CNLiveRequestBastKit.framework/Headers/CNLiveNetworkEnum.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveRequestBastKit/CNLiveRequestBastKit/Classes/CNLiveNetworkEnum.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit/CNLiveRequestBastKit.framework/Headers/CNLiveNetworkEnum.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveRequestBastKit/CNLiveRequestBastKit/Classes/CNLiveNetworkEnum.h/","<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--HeadermapTaskProducer>","<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit/CNLiveRequestBastKit.framework/Headers/CNLiveNetworkEnum.h"]}
"target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveRequestBastKit/CNLiveRequestBastKit/Classes/CNLiveNetworkLogManager.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit/CNLiveRequestBastKit.framework/Headers/CNLiveNetworkLogManager.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveRequestBastKit/CNLiveRequestBastKit/Classes/CNLiveNetworkLogManager.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit/CNLiveRequestBastKit.framework/Headers/CNLiveNetworkLogManager.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveRequestBastKit/CNLiveRequestBastKit/Classes/CNLiveNetworkLogManager.h/","<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--HeadermapTaskProducer>","<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit/CNLiveRequestBastKit.framework/Headers/CNLiveNetworkLogManager.h"]}
"target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveRequestBastKit/CNLiveRequestBastKit/Classes/CNLiveNetworkLogWebViewController.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit/CNLiveRequestBastKit.framework/Headers/CNLiveNetworkLogWebViewController.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveRequestBastKit/CNLiveRequestBastKit/Classes/CNLiveNetworkLogWebViewController.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit/CNLiveRequestBastKit.framework/Headers/CNLiveNetworkLogWebViewController.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveRequestBastKit/CNLiveRequestBastKit/Classes/CNLiveNetworkLogWebViewController.h/","<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--HeadermapTaskProducer>","<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit/CNLiveRequestBastKit.framework/Headers/CNLiveNetworkLogWebViewController.h"]}
"target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveRequestBastKit/CNLiveRequestBastKit/Classes/CNLiveNetworkPrivate.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit/CNLiveRequestBastKit.framework/Headers/CNLiveNetworkPrivate.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveRequestBastKit/CNLiveRequestBastKit/Classes/CNLiveNetworkPrivate.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit/CNLiveRequestBastKit.framework/Headers/CNLiveNetworkPrivate.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveRequestBastKit/CNLiveRequestBastKit/Classes/CNLiveNetworkPrivate.h/","<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--HeadermapTaskProducer>","<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit/CNLiveRequestBastKit.framework/Headers/CNLiveNetworkPrivate.h"]}
"target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveRequestBastKit/CNLiveRequestBastKit/Classes/CNLiveNetworkRequest.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit/CNLiveRequestBastKit.framework/Headers/CNLiveNetworkRequest.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveRequestBastKit/CNLiveRequestBastKit/Classes/CNLiveNetworkRequest.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit/CNLiveRequestBastKit.framework/Headers/CNLiveNetworkRequest.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveRequestBastKit/CNLiveRequestBastKit/Classes/CNLiveNetworkRequest.h/","<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--HeadermapTaskProducer>","<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit/CNLiveRequestBastKit.framework/Headers/CNLiveNetworkRequest.h"]}
"target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveRequestBastKit/CNLiveRequestBastKit/Classes/CNLiveNetworkSessionManager.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit/CNLiveRequestBastKit.framework/Headers/CNLiveNetworkSessionManager.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveRequestBastKit/CNLiveRequestBastKit/Classes/CNLiveNetworkSessionManager.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit/CNLiveRequestBastKit.framework/Headers/CNLiveNetworkSessionManager.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveRequestBastKit/CNLiveRequestBastKit/Classes/CNLiveNetworkSessionManager.h/","<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--HeadermapTaskProducer>","<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit/CNLiveRequestBastKit.framework/Headers/CNLiveNetworkSessionManager.h"]}
"target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveRequestBastKit/CNLiveRequestBastKit/Classes/CNLiveNetworking.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit/CNLiveRequestBastKit.framework/Headers/CNLiveNetworking.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveRequestBastKit/CNLiveRequestBastKit/Classes/CNLiveNetworking.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit/CNLiveRequestBastKit.framework/Headers/CNLiveNetworking.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveRequestBastKit/CNLiveRequestBastKit/Classes/CNLiveNetworking.h/","<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--HeadermapTaskProducer>","<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit/CNLiveRequestBastKit.framework/Headers/CNLiveNetworking.h"]}
"target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveRequestBastKit/CNLiveRequestBastKit-umbrella.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit/CNLiveRequestBastKit.framework/Headers/CNLiveRequestBastKit-umbrella.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveRequestBastKit/CNLiveRequestBastKit-umbrella.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit/CNLiveRequestBastKit.framework/Headers/CNLiveRequestBastKit-umbrella.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveRequestBastKit/CNLiveRequestBastKit-umbrella.h/","<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--HeadermapTaskProducer>","<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit/CNLiveRequestBastKit.framework/Headers/CNLiveRequestBastKit-umbrella.h"]}
"target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af-:Debug:CreateUniversalBinary /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit/CNLiveRequestBastKit.framework/CNLiveRequestBastKit normal armv7 arm64": {"tool":"shell","description":"CreateUniversalBinary /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit/CNLiveRequestBastKit.framework/CNLiveRequestBastKit normal armv7 arm64","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/armv7/Binary/CNLiveRequestBastKit","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/arm64/Binary/CNLiveRequestBastKit","<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--phase0-copy-headers>","<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit/CNLiveRequestBastKit.framework/CNLiveRequestBastKit","<Linked Binary /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit/CNLiveRequestBastKit.framework/CNLiveRequestBastKit>"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/lipo","-create","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/armv7/Binary/CNLiveRequestBastKit","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/arm64/Binary/CNLiveRequestBastKit","-output","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit/CNLiveRequestBastKit.framework/CNLiveRequestBastKit"],"env":{},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","signature":"d39f0b1ee46b31a4bc9558d2e4ff4007"}
"target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af-:Debug:Ditto /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/module.modulemap /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit/CNLiveRequestBastKit.framework/Modules/module.modulemap": {"tool":"file-copy","description":"Ditto /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/module.modulemap /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit/CNLiveRequestBastKit.framework/Modules/module.modulemap","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/module.modulemap/","<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--HeadermapTaskProducer>","<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit/CNLiveRequestBastKit.framework/Modules/module.modulemap"]}
"target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af-:Debug:Ld /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/arm64/Binary/CNLiveRequestBastKit normal arm64": {"tool":"shell","description":"Ld /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/arm64/Binary/CNLiveRequestBastKit normal arm64","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/arm64/CNLiveNetworkAgent.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/arm64/CNLiveNetworkBaseRequest.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/arm64/CNLiveNetworkConfig.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/arm64/CNLiveNetworking.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/arm64/CNLiveNetworkLogManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/arm64/CNLiveNetworkLogWebViewController.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/arm64/CNLiveNetworkPrivate.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/arm64/CNLiveNetworkRequest.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/arm64/CNLiveNetworkSessionManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/arm64/CNLiveRequestBastKit-dummy.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/arm64/CNLiveRequestBastKit_vers.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/arm64/CNLiveRequestBastKit.LinkFileList","<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--phase0-copy-headers>","<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/arm64/Binary/CNLiveRequestBastKit"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-target","arm64-apple-ios9.0","-dynamiclib","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-L/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking","-filelist","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/arm64/CNLiveRequestBastKit.LinkFileList","-install_name","@rpath/CNLiveRequestBastKit.framework/CNLiveRequestBastKit","-Xlinker","-rpath","-Xlinker","@executable_path/Frameworks","-Xlinker","-rpath","-Xlinker","@loader_path/Frameworks","-dead_strip","-Xlinker","-object_path_lto","-Xlinker","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/arm64/CNLiveRequestBastKit_lto.o","-Xlinker","-export_dynamic","-Xlinker","-no_deduplicate","-fembed-bitcode-marker","-fobjc-arc","-fobjc-link-runtime","-framework","AFNetworking","-framework","Foundation","-compatibility_version","1","-current_version","1","-Xlinker","-dependency_info","-Xlinker","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/arm64/CNLiveRequestBastKit_dependency_info.dat","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/arm64/Binary/CNLiveRequestBastKit"],"env":{},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/arm64/CNLiveRequestBastKit_dependency_info.dat"],"deps-style":"dependency-info","signature":"0a9bda0293c1f7e41f5df0d5214f473f"}
"target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af-:Debug:Ld /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/armv7/Binary/CNLiveRequestBastKit normal armv7": {"tool":"shell","description":"Ld /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/armv7/Binary/CNLiveRequestBastKit normal armv7","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/armv7/CNLiveNetworkAgent.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/armv7/CNLiveNetworkBaseRequest.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/armv7/CNLiveNetworkConfig.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/armv7/CNLiveNetworking.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/armv7/CNLiveNetworkLogManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/armv7/CNLiveNetworkLogWebViewController.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/armv7/CNLiveNetworkPrivate.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/armv7/CNLiveNetworkRequest.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/armv7/CNLiveNetworkSessionManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/armv7/CNLiveRequestBastKit-dummy.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/armv7/CNLiveRequestBastKit_vers.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/armv7/CNLiveRequestBastKit.LinkFileList","<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--phase0-copy-headers>","<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/armv7/Binary/CNLiveRequestBastKit"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-target","armv7-apple-ios9.0","-dynamiclib","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-L/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking","-filelist","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/armv7/CNLiveRequestBastKit.LinkFileList","-install_name","@rpath/CNLiveRequestBastKit.framework/CNLiveRequestBastKit","-Xlinker","-rpath","-Xlinker","@executable_path/Frameworks","-Xlinker","-rpath","-Xlinker","@loader_path/Frameworks","-dead_strip","-Xlinker","-object_path_lto","-Xlinker","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/armv7/CNLiveRequestBastKit_lto.o","-Xlinker","-export_dynamic","-Xlinker","-no_deduplicate","-fembed-bitcode-marker","-fobjc-arc","-fobjc-link-runtime","-framework","AFNetworking","-framework","Foundation","-compatibility_version","1","-current_version","1","-Xlinker","-dependency_info","-Xlinker","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/armv7/CNLiveRequestBastKit_dependency_info.dat","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/armv7/Binary/CNLiveRequestBastKit"],"env":{},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/armv7/CNLiveRequestBastKit_dependency_info.dat"],"deps-style":"dependency-info","signature":"2b428cf9986892631cc8965bb541b894"}
"target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af-:Debug:MkDir /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit/CNLiveRequestBastKit.framework": {"tool":"mkdir","description":"MkDir /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit/CNLiveRequestBastKit.framework","inputs":["<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--start>","<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit/CNLiveRequestBastKit.framework","<MkDir /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit/CNLiveRequestBastKit.framework>"]}
"target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af-:Debug:MkDir /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit/CNLiveRequestBastKit.framework/Headers": {"tool":"mkdir","description":"MkDir /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit/CNLiveRequestBastKit.framework/Headers","inputs":["<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--start>","<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit/CNLiveRequestBastKit.framework/Headers","<MkDir /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit/CNLiveRequestBastKit.framework/Headers>"]}
"target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af-:Debug:ProcessInfoPlistFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit/CNLiveRequestBastKit.framework/Info.plist /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveRequestBastKit/CNLiveRequestBastKit-Info.plist": {"tool":"info-plist-processor","description":"ProcessInfoPlistFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit/CNLiveRequestBastKit.framework/Info.plist /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveRequestBastKit/CNLiveRequestBastKit-Info.plist","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveRequestBastKit/CNLiveRequestBastKit-Info.plist","<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--HeadermapTaskProducer>","<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit/CNLiveRequestBastKit.framework/Info.plist"]}
"target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af-:Debug:Touch /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit/CNLiveRequestBastKit.framework": {"tool":"shell","description":"Touch /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit/CNLiveRequestBastKit.framework","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit/CNLiveRequestBastKit.framework","<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--Barrier-RegisterExecutionPolicyException>","<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--entry>"],"outputs":["<Touch /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit/CNLiveRequestBastKit.framework>"],"args":["/usr/bin/touch","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit/CNLiveRequestBastKit.framework"],"env":{},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","signature":"ef1ba4da897f4b455464438c79d54770"}
"target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/CNLiveRequestBastKit-all-non-framework-target-headers.hmap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/CNLiveRequestBastKit-all-non-framework-target-headers.hmap","inputs":["<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--GeneratedFilesTaskProducer>","<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/CNLiveRequestBastKit-all-non-framework-target-headers.hmap"]}
"target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/CNLiveRequestBastKit-all-target-headers.hmap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/CNLiveRequestBastKit-all-target-headers.hmap","inputs":["<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--GeneratedFilesTaskProducer>","<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/CNLiveRequestBastKit-all-target-headers.hmap"]}
"target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/CNLiveRequestBastKit-generated-files.hmap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/CNLiveRequestBastKit-generated-files.hmap","inputs":["<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--GeneratedFilesTaskProducer>","<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/CNLiveRequestBastKit-generated-files.hmap"]}
"target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/CNLiveRequestBastKit-own-target-headers.hmap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/CNLiveRequestBastKit-own-target-headers.hmap","inputs":["<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--GeneratedFilesTaskProducer>","<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/CNLiveRequestBastKit-own-target-headers.hmap"]}
"target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/CNLiveRequestBastKit-project-headers.hmap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/CNLiveRequestBastKit-project-headers.hmap","inputs":["<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--GeneratedFilesTaskProducer>","<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/CNLiveRequestBastKit-project-headers.hmap"]}
"target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/CNLiveRequestBastKit.hmap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/CNLiveRequestBastKit.hmap","inputs":["<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--GeneratedFilesTaskProducer>","<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/CNLiveRequestBastKit.hmap"]}
"target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/DerivedSources/CNLiveRequestBastKit_vers.c": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/DerivedSources/CNLiveRequestBastKit_vers.c","inputs":["<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--phase0-copy-headers>","<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/DerivedSources/CNLiveRequestBastKit_vers.c"]}
"target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/arm64/CNLiveRequestBastKit.LinkFileList": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/arm64/CNLiveRequestBastKit.LinkFileList","inputs":["<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--phase0-copy-headers>","<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/arm64/CNLiveRequestBastKit.LinkFileList"]}
"target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/armv7/CNLiveRequestBastKit.LinkFileList": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/armv7/CNLiveRequestBastKit.LinkFileList","inputs":["<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--phase0-copy-headers>","<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/Objects-normal/armv7/CNLiveRequestBastKit.LinkFileList"]}
"target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/all-product-headers.yaml": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/all-product-headers.yaml","inputs":["<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--GeneratedFilesTaskProducer>","<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/all-product-headers.yaml"]}
"target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/module.modulemap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/module.modulemap","inputs":["<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--HeadermapTaskProducer>","<target-CNLiveRequestBastKit-285b96a559574e49fe0e1a40c03a5a8e781f71f817d23896b3e53cef4cb1f9af--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveRequestBastKit.build/module.modulemap"]}
"target-CNLiveTripartiteManagement-285b96a559574e49fe0e1a40c03a5a8ec69cdcecdf4ee3a594726fb547f0e760-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveTripartiteManagement.build/Objects-normal/arm64/CNLiveTripartiteManagement-dummy.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveTripartiteManagement/CNLiveTripartiteManagement-dummy.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveTripartiteManagement.build/Objects-normal/arm64/CNLiveTripartiteManagement-dummy.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveTripartiteManagement/CNLiveTripartiteManagement-dummy.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveTripartiteManagement/CNLiveTripartiteManagement-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveTripartiteManagement/CNLiveTripartiteManagement-dummy.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveTripartiteManagement.build/module.modulemap","<target-CNLiveTripartiteManagement-285b96a559574e49fe0e1a40c03a5a8ec69cdcecdf4ee3a594726fb547f0e760--generated-headers>","<target-CNLiveTripartiteManagement-285b96a559574e49fe0e1a40c03a5a8ec69cdcecdf4ee3a594726fb547f0e760--phase0-copy-headers>","<target-CNLiveTripartiteManagement-285b96a559574e49fe0e1a40c03a5a8ec69cdcecdf4ee3a594726fb547f0e760--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveTripartiteManagement.build/Objects-normal/arm64/CNLiveTripartiteManagement-dummy.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=CNLiveTripartiteManagement","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveTripartiteManagement.build/CNLiveTripartiteManagement-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveTripartiteManagement.build/CNLiveTripartiteManagement-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveTripartiteManagement.build/CNLiveTripartiteManagement-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveTripartiteManagement.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveTripartiteManagement.build/CNLiveTripartiteManagement-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveTripartiteManagement/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveTripartiteManagement.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveTripartiteManagement.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveTripartiteManagement.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveTripartiteManagement","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveTripartiteManagement/CNLiveTripartiteManagement-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveTripartiteManagement.build/Objects-normal/arm64/CNLiveTripartiteManagement-dummy.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveTripartiteManagement.build/Objects-normal/arm64/CNLiveTripartiteManagement-dummy.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveTripartiteManagement/CNLiveTripartiteManagement-dummy.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveTripartiteManagement.build/Objects-normal/arm64/CNLiveTripartiteManagement-dummy.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveTripartiteManagement.build/Objects-normal/arm64/CNLiveTripartiteManagement-dummy.d"],"deps-style":"makefile","signature":"44c870a43cc82c97514169f41f93aaf5"}
"target-CNLiveTripartiteManagement-285b96a559574e49fe0e1a40c03a5a8ec69cdcecdf4ee3a594726fb547f0e760-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveTripartiteManagement.build/Objects-normal/arm64/CNLiveTripartiteManagement_vers.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveTripartiteManagement.build/DerivedSources/CNLiveTripartiteManagement_vers.c normal arm64 c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveTripartiteManagement.build/Objects-normal/arm64/CNLiveTripartiteManagement_vers.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveTripartiteManagement.build/DerivedSources/CNLiveTripartiteManagement_vers.c normal arm64 c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveTripartiteManagement.build/DerivedSources/CNLiveTripartiteManagement_vers.c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveTripartiteManagement.build/module.modulemap","<target-CNLiveTripartiteManagement-285b96a559574e49fe0e1a40c03a5a8ec69cdcecdf4ee3a594726fb547f0e760--generated-headers>","<target-CNLiveTripartiteManagement-285b96a559574e49fe0e1a40c03a5a8ec69cdcecdf4ee3a594726fb547f0e760--phase0-copy-headers>","<target-CNLiveTripartiteManagement-285b96a559574e49fe0e1a40c03a5a8ec69cdcecdf4ee3a594726fb547f0e760--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveTripartiteManagement.build/Objects-normal/arm64/CNLiveTripartiteManagement_vers.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c","-target","arm64-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=CNLiveTripartiteManagement","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Werror=deprecated-objc-isa-usage","-Werror=objc-root-class","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveTripartiteManagement.build/CNLiveTripartiteManagement-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveTripartiteManagement.build/CNLiveTripartiteManagement-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveTripartiteManagement.build/CNLiveTripartiteManagement-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveTripartiteManagement.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveTripartiteManagement.build/CNLiveTripartiteManagement-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveTripartiteManagement/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveTripartiteManagement.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveTripartiteManagement.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveTripartiteManagement.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveTripartiteManagement","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveTripartiteManagement.build/Objects-normal/arm64/CNLiveTripartiteManagement_vers.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveTripartiteManagement.build/Objects-normal/arm64/CNLiveTripartiteManagement_vers.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveTripartiteManagement.build/DerivedSources/CNLiveTripartiteManagement_vers.c","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveTripartiteManagement.build/Objects-normal/arm64/CNLiveTripartiteManagement_vers.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveTripartiteManagement.build/Objects-normal/arm64/CNLiveTripartiteManagement_vers.d"],"deps-style":"makefile","signature":"71fb17c780840cea86653929a1de9a08"}
"target-CNLiveTripartiteManagement-285b96a559574e49fe0e1a40c03a5a8ec69cdcecdf4ee3a594726fb547f0e760-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveTripartiteManagement.build/Objects-normal/armv7/CNLiveTripartiteManagement-dummy.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveTripartiteManagement/CNLiveTripartiteManagement-dummy.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveTripartiteManagement.build/Objects-normal/armv7/CNLiveTripartiteManagement-dummy.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveTripartiteManagement/CNLiveTripartiteManagement-dummy.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveTripartiteManagement/CNLiveTripartiteManagement-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveTripartiteManagement/CNLiveTripartiteManagement-dummy.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveTripartiteManagement.build/module.modulemap","<target-CNLiveTripartiteManagement-285b96a559574e49fe0e1a40c03a5a8ec69cdcecdf4ee3a594726fb547f0e760--generated-headers>","<target-CNLiveTripartiteManagement-285b96a559574e49fe0e1a40c03a5a8ec69cdcecdf4ee3a594726fb547f0e760--phase0-copy-headers>","<target-CNLiveTripartiteManagement-285b96a559574e49fe0e1a40c03a5a8ec69cdcecdf4ee3a594726fb547f0e760--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveTripartiteManagement.build/Objects-normal/armv7/CNLiveTripartiteManagement-dummy.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=CNLiveTripartiteManagement","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveTripartiteManagement.build/CNLiveTripartiteManagement-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveTripartiteManagement.build/CNLiveTripartiteManagement-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveTripartiteManagement.build/CNLiveTripartiteManagement-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveTripartiteManagement.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveTripartiteManagement.build/CNLiveTripartiteManagement-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveTripartiteManagement/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveTripartiteManagement.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveTripartiteManagement.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveTripartiteManagement.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveTripartiteManagement","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveTripartiteManagement/CNLiveTripartiteManagement-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveTripartiteManagement.build/Objects-normal/armv7/CNLiveTripartiteManagement-dummy.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveTripartiteManagement.build/Objects-normal/armv7/CNLiveTripartiteManagement-dummy.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveTripartiteManagement/CNLiveTripartiteManagement-dummy.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveTripartiteManagement.build/Objects-normal/armv7/CNLiveTripartiteManagement-dummy.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveTripartiteManagement.build/Objects-normal/armv7/CNLiveTripartiteManagement-dummy.d"],"deps-style":"makefile","signature":"fd4d68638ef7ba7ecd388866c41c3e3c"}
"target-CNLiveTripartiteManagement-285b96a559574e49fe0e1a40c03a5a8ec69cdcecdf4ee3a594726fb547f0e760-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveTripartiteManagement.build/Objects-normal/armv7/CNLiveTripartiteManagement_vers.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveTripartiteManagement.build/DerivedSources/CNLiveTripartiteManagement_vers.c normal armv7 c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveTripartiteManagement.build/Objects-normal/armv7/CNLiveTripartiteManagement_vers.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveTripartiteManagement.build/DerivedSources/CNLiveTripartiteManagement_vers.c normal armv7 c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveTripartiteManagement.build/DerivedSources/CNLiveTripartiteManagement_vers.c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveTripartiteManagement.build/module.modulemap","<target-CNLiveTripartiteManagement-285b96a559574e49fe0e1a40c03a5a8ec69cdcecdf4ee3a594726fb547f0e760--generated-headers>","<target-CNLiveTripartiteManagement-285b96a559574e49fe0e1a40c03a5a8ec69cdcecdf4ee3a594726fb547f0e760--phase0-copy-headers>","<target-CNLiveTripartiteManagement-285b96a559574e49fe0e1a40c03a5a8ec69cdcecdf4ee3a594726fb547f0e760--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveTripartiteManagement.build/Objects-normal/armv7/CNLiveTripartiteManagement_vers.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c","-target","armv7-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=CNLiveTripartiteManagement","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Werror=deprecated-objc-isa-usage","-Werror=objc-root-class","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveTripartiteManagement.build/CNLiveTripartiteManagement-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveTripartiteManagement.build/CNLiveTripartiteManagement-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveTripartiteManagement.build/CNLiveTripartiteManagement-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveTripartiteManagement.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveTripartiteManagement.build/CNLiveTripartiteManagement-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveTripartiteManagement/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveTripartiteManagement.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveTripartiteManagement.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveTripartiteManagement.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveTripartiteManagement","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveTripartiteManagement.build/Objects-normal/armv7/CNLiveTripartiteManagement_vers.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveTripartiteManagement.build/Objects-normal/armv7/CNLiveTripartiteManagement_vers.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveTripartiteManagement.build/DerivedSources/CNLiveTripartiteManagement_vers.c","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveTripartiteManagement.build/Objects-normal/armv7/CNLiveTripartiteManagement_vers.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveTripartiteManagement.build/Objects-normal/armv7/CNLiveTripartiteManagement_vers.d"],"deps-style":"makefile","signature":"7d90d28cc9253315572ebd038d5630ee"}
"target-CNLiveTripartiteManagement-285b96a559574e49fe0e1a40c03a5a8ec69cdcecdf4ee3a594726fb547f0e760-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveTripartiteManagement/CNLiveTripartiteManagement-umbrella.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveTripartiteManagement/CNLiveTripartiteManagement.framework/Headers/CNLiveTripartiteManagement-umbrella.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveTripartiteManagement/CNLiveTripartiteManagement-umbrella.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveTripartiteManagement/CNLiveTripartiteManagement.framework/Headers/CNLiveTripartiteManagement-umbrella.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveTripartiteManagement/CNLiveTripartiteManagement-umbrella.h/","<target-CNLiveTripartiteManagement-285b96a559574e49fe0e1a40c03a5a8ec69cdcecdf4ee3a594726fb547f0e760--HeadermapTaskProducer>","<target-CNLiveTripartiteManagement-285b96a559574e49fe0e1a40c03a5a8ec69cdcecdf4ee3a594726fb547f0e760--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveTripartiteManagement/CNLiveTripartiteManagement.framework/Headers/CNLiveTripartiteManagement-umbrella.h"]}
"target-CNLiveTripartiteManagement-285b96a559574e49fe0e1a40c03a5a8ec69cdcecdf4ee3a594726fb547f0e760-:Debug:CreateUniversalBinary /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveTripartiteManagement/CNLiveTripartiteManagement.framework/CNLiveTripartiteManagement normal armv7 arm64": {"tool":"shell","description":"CreateUniversalBinary /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveTripartiteManagement/CNLiveTripartiteManagement.framework/CNLiveTripartiteManagement normal armv7 arm64","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveTripartiteManagement.build/Objects-normal/armv7/Binary/CNLiveTripartiteManagement","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveTripartiteManagement.build/Objects-normal/arm64/Binary/CNLiveTripartiteManagement","<target-CNLiveTripartiteManagement-285b96a559574e49fe0e1a40c03a5a8ec69cdcecdf4ee3a594726fb547f0e760--phase0-copy-headers>","<target-CNLiveTripartiteManagement-285b96a559574e49fe0e1a40c03a5a8ec69cdcecdf4ee3a594726fb547f0e760--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveTripartiteManagement/CNLiveTripartiteManagement.framework/CNLiveTripartiteManagement","<Linked Binary /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveTripartiteManagement/CNLiveTripartiteManagement.framework/CNLiveTripartiteManagement>"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/lipo","-create","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveTripartiteManagement.build/Objects-normal/armv7/Binary/CNLiveTripartiteManagement","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveTripartiteManagement.build/Objects-normal/arm64/Binary/CNLiveTripartiteManagement","-output","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveTripartiteManagement/CNLiveTripartiteManagement.framework/CNLiveTripartiteManagement"],"env":{},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","signature":"c39a28deb642f2dae1e0e22992b01520"}
"target-CNLiveTripartiteManagement-285b96a559574e49fe0e1a40c03a5a8ec69cdcecdf4ee3a594726fb547f0e760-:Debug:Ditto /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveTripartiteManagement.build/module.modulemap /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveTripartiteManagement/CNLiveTripartiteManagement.framework/Modules/module.modulemap": {"tool":"file-copy","description":"Ditto /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveTripartiteManagement.build/module.modulemap /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveTripartiteManagement/CNLiveTripartiteManagement.framework/Modules/module.modulemap","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveTripartiteManagement.build/module.modulemap/","<target-CNLiveTripartiteManagement-285b96a559574e49fe0e1a40c03a5a8ec69cdcecdf4ee3a594726fb547f0e760--HeadermapTaskProducer>","<target-CNLiveTripartiteManagement-285b96a559574e49fe0e1a40c03a5a8ec69cdcecdf4ee3a594726fb547f0e760--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveTripartiteManagement/CNLiveTripartiteManagement.framework/Modules/module.modulemap"]}
"target-CNLiveTripartiteManagement-285b96a559574e49fe0e1a40c03a5a8ec69cdcecdf4ee3a594726fb547f0e760-:Debug:Ld /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveTripartiteManagement.build/Objects-normal/arm64/Binary/CNLiveTripartiteManagement normal arm64": {"tool":"shell","description":"Ld /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveTripartiteManagement.build/Objects-normal/arm64/Binary/CNLiveTripartiteManagement normal arm64","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveTripartiteManagement.build/Objects-normal/arm64/CNLiveTripartiteManagement-dummy.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveTripartiteManagement.build/Objects-normal/arm64/CNLiveTripartiteManagement_vers.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveTripartiteManagement.build/Objects-normal/arm64/CNLiveTripartiteManagement.LinkFileList","<target-CNLiveTripartiteManagement-285b96a559574e49fe0e1a40c03a5a8ec69cdcecdf4ee3a594726fb547f0e760--phase0-copy-headers>","<target-CNLiveTripartiteManagement-285b96a559574e49fe0e1a40c03a5a8ec69cdcecdf4ee3a594726fb547f0e760--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveTripartiteManagement.build/Objects-normal/arm64/Binary/CNLiveTripartiteManagement"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-target","arm64-apple-ios9.0","-dynamiclib","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-L/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveTripartiteManagement","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveTripartiteManagement","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-filelist","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveTripartiteManagement.build/Objects-normal/arm64/CNLiveTripartiteManagement.LinkFileList","-install_name","@rpath/CNLiveTripartiteManagement.framework/CNLiveTripartiteManagement","-Xlinker","-rpath","-Xlinker","@executable_path/Frameworks","-Xlinker","-rpath","-Xlinker","@loader_path/Frameworks","-dead_strip","-Xlinker","-object_path_lto","-Xlinker","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveTripartiteManagement.build/Objects-normal/arm64/CNLiveTripartiteManagement_lto.o","-Xlinker","-export_dynamic","-Xlinker","-no_deduplicate","-fembed-bitcode-marker","-fobjc-arc","-fobjc-link-runtime","-framework","Foundation","-framework","UIKit","-framework","Foundation","-framework","Masonry","-framework","MJExtension","-framework","MJRefresh","-framework","QMUIKit","-framework","SDWebImage","-framework","UIKit","-framework","YYKit","-compatibility_version","1","-current_version","1","-Xlinker","-dependency_info","-Xlinker","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveTripartiteManagement.build/Objects-normal/arm64/CNLiveTripartiteManagement_dependency_info.dat","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveTripartiteManagement.build/Objects-normal/arm64/Binary/CNLiveTripartiteManagement"],"env":{},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveTripartiteManagement.build/Objects-normal/arm64/CNLiveTripartiteManagement_dependency_info.dat"],"deps-style":"dependency-info","signature":"52401a9fb8527937f62ce47664b46110"}
"target-CNLiveTripartiteManagement-285b96a559574e49fe0e1a40c03a5a8ec69cdcecdf4ee3a594726fb547f0e760-:Debug:Ld /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveTripartiteManagement.build/Objects-normal/armv7/Binary/CNLiveTripartiteManagement normal armv7": {"tool":"shell","description":"Ld /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveTripartiteManagement.build/Objects-normal/armv7/Binary/CNLiveTripartiteManagement normal armv7","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveTripartiteManagement.build/Objects-normal/armv7/CNLiveTripartiteManagement-dummy.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveTripartiteManagement.build/Objects-normal/armv7/CNLiveTripartiteManagement_vers.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveTripartiteManagement.build/Objects-normal/armv7/CNLiveTripartiteManagement.LinkFileList","<target-CNLiveTripartiteManagement-285b96a559574e49fe0e1a40c03a5a8ec69cdcecdf4ee3a594726fb547f0e760--phase0-copy-headers>","<target-CNLiveTripartiteManagement-285b96a559574e49fe0e1a40c03a5a8ec69cdcecdf4ee3a594726fb547f0e760--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveTripartiteManagement.build/Objects-normal/armv7/Binary/CNLiveTripartiteManagement"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-target","armv7-apple-ios9.0","-dynamiclib","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-L/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveTripartiteManagement","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveTripartiteManagement","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-filelist","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveTripartiteManagement.build/Objects-normal/armv7/CNLiveTripartiteManagement.LinkFileList","-install_name","@rpath/CNLiveTripartiteManagement.framework/CNLiveTripartiteManagement","-Xlinker","-rpath","-Xlinker","@executable_path/Frameworks","-Xlinker","-rpath","-Xlinker","@loader_path/Frameworks","-dead_strip","-Xlinker","-object_path_lto","-Xlinker","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveTripartiteManagement.build/Objects-normal/armv7/CNLiveTripartiteManagement_lto.o","-Xlinker","-export_dynamic","-Xlinker","-no_deduplicate","-fembed-bitcode-marker","-fobjc-arc","-fobjc-link-runtime","-framework","Foundation","-framework","UIKit","-framework","Foundation","-framework","Masonry","-framework","MJExtension","-framework","MJRefresh","-framework","QMUIKit","-framework","SDWebImage","-framework","UIKit","-framework","YYKit","-compatibility_version","1","-current_version","1","-Xlinker","-dependency_info","-Xlinker","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveTripartiteManagement.build/Objects-normal/armv7/CNLiveTripartiteManagement_dependency_info.dat","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveTripartiteManagement.build/Objects-normal/armv7/Binary/CNLiveTripartiteManagement"],"env":{},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveTripartiteManagement.build/Objects-normal/armv7/CNLiveTripartiteManagement_dependency_info.dat"],"deps-style":"dependency-info","signature":"af79ff45674da5b22102a62c1a3a41bd"}
"target-CNLiveTripartiteManagement-285b96a559574e49fe0e1a40c03a5a8ec69cdcecdf4ee3a594726fb547f0e760-:Debug:MkDir /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveTripartiteManagement/CNLiveTripartiteManagement.framework": {"tool":"mkdir","description":"MkDir /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveTripartiteManagement/CNLiveTripartiteManagement.framework","inputs":["<target-CNLiveTripartiteManagement-285b96a559574e49fe0e1a40c03a5a8ec69cdcecdf4ee3a594726fb547f0e760--start>","<target-CNLiveTripartiteManagement-285b96a559574e49fe0e1a40c03a5a8ec69cdcecdf4ee3a594726fb547f0e760--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveTripartiteManagement/CNLiveTripartiteManagement.framework","<MkDir /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveTripartiteManagement/CNLiveTripartiteManagement.framework>"]}
"target-CNLiveTripartiteManagement-285b96a559574e49fe0e1a40c03a5a8ec69cdcecdf4ee3a594726fb547f0e760-:Debug:MkDir /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveTripartiteManagement/CNLiveTripartiteManagement.framework/Headers": {"tool":"mkdir","description":"MkDir /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveTripartiteManagement/CNLiveTripartiteManagement.framework/Headers","inputs":["<target-CNLiveTripartiteManagement-285b96a559574e49fe0e1a40c03a5a8ec69cdcecdf4ee3a594726fb547f0e760--start>","<target-CNLiveTripartiteManagement-285b96a559574e49fe0e1a40c03a5a8ec69cdcecdf4ee3a594726fb547f0e760--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveTripartiteManagement/CNLiveTripartiteManagement.framework/Headers","<MkDir /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveTripartiteManagement/CNLiveTripartiteManagement.framework/Headers>"]}
"target-CNLiveTripartiteManagement-285b96a559574e49fe0e1a40c03a5a8ec69cdcecdf4ee3a594726fb547f0e760-:Debug:ProcessInfoPlistFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveTripartiteManagement/CNLiveTripartiteManagement.framework/Info.plist /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveTripartiteManagement/CNLiveTripartiteManagement-Info.plist": {"tool":"info-plist-processor","description":"ProcessInfoPlistFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveTripartiteManagement/CNLiveTripartiteManagement.framework/Info.plist /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveTripartiteManagement/CNLiveTripartiteManagement-Info.plist","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveTripartiteManagement/CNLiveTripartiteManagement-Info.plist","<target-CNLiveTripartiteManagement-285b96a559574e49fe0e1a40c03a5a8ec69cdcecdf4ee3a594726fb547f0e760--HeadermapTaskProducer>","<target-CNLiveTripartiteManagement-285b96a559574e49fe0e1a40c03a5a8ec69cdcecdf4ee3a594726fb547f0e760--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveTripartiteManagement/CNLiveTripartiteManagement.framework/Info.plist"]}
"target-CNLiveTripartiteManagement-285b96a559574e49fe0e1a40c03a5a8ec69cdcecdf4ee3a594726fb547f0e760-:Debug:Touch /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveTripartiteManagement/CNLiveTripartiteManagement.framework": {"tool":"shell","description":"Touch /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveTripartiteManagement/CNLiveTripartiteManagement.framework","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveTripartiteManagement/CNLiveTripartiteManagement.framework","<target-CNLiveTripartiteManagement-285b96a559574e49fe0e1a40c03a5a8ec69cdcecdf4ee3a594726fb547f0e760--Barrier-RegisterExecutionPolicyException>","<target-CNLiveTripartiteManagement-285b96a559574e49fe0e1a40c03a5a8ec69cdcecdf4ee3a594726fb547f0e760--entry>"],"outputs":["<Touch /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveTripartiteManagement/CNLiveTripartiteManagement.framework>"],"args":["/usr/bin/touch","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveTripartiteManagement/CNLiveTripartiteManagement.framework"],"env":{},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","signature":"585a06fd64baba325b5fd421ff5cbe4a"}
"target-CNLiveTripartiteManagement-285b96a559574e49fe0e1a40c03a5a8ec69cdcecdf4ee3a594726fb547f0e760-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveTripartiteManagement.build/CNLiveTripartiteManagement-all-non-framework-target-headers.hmap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveTripartiteManagement.build/CNLiveTripartiteManagement-all-non-framework-target-headers.hmap","inputs":["<target-CNLiveTripartiteManagement-285b96a559574e49fe0e1a40c03a5a8ec69cdcecdf4ee3a594726fb547f0e760--GeneratedFilesTaskProducer>","<target-CNLiveTripartiteManagement-285b96a559574e49fe0e1a40c03a5a8ec69cdcecdf4ee3a594726fb547f0e760--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveTripartiteManagement.build/CNLiveTripartiteManagement-all-non-framework-target-headers.hmap"]}
"target-CNLiveTripartiteManagement-285b96a559574e49fe0e1a40c03a5a8ec69cdcecdf4ee3a594726fb547f0e760-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveTripartiteManagement.build/CNLiveTripartiteManagement-all-target-headers.hmap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveTripartiteManagement.build/CNLiveTripartiteManagement-all-target-headers.hmap","inputs":["<target-CNLiveTripartiteManagement-285b96a559574e49fe0e1a40c03a5a8ec69cdcecdf4ee3a594726fb547f0e760--GeneratedFilesTaskProducer>","<target-CNLiveTripartiteManagement-285b96a559574e49fe0e1a40c03a5a8ec69cdcecdf4ee3a594726fb547f0e760--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveTripartiteManagement.build/CNLiveTripartiteManagement-all-target-headers.hmap"]}
"target-CNLiveTripartiteManagement-285b96a559574e49fe0e1a40c03a5a8ec69cdcecdf4ee3a594726fb547f0e760-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveTripartiteManagement.build/CNLiveTripartiteManagement-generated-files.hmap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveTripartiteManagement.build/CNLiveTripartiteManagement-generated-files.hmap","inputs":["<target-CNLiveTripartiteManagement-285b96a559574e49fe0e1a40c03a5a8ec69cdcecdf4ee3a594726fb547f0e760--GeneratedFilesTaskProducer>","<target-CNLiveTripartiteManagement-285b96a559574e49fe0e1a40c03a5a8ec69cdcecdf4ee3a594726fb547f0e760--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveTripartiteManagement.build/CNLiveTripartiteManagement-generated-files.hmap"]}
"target-CNLiveTripartiteManagement-285b96a559574e49fe0e1a40c03a5a8ec69cdcecdf4ee3a594726fb547f0e760-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveTripartiteManagement.build/CNLiveTripartiteManagement-own-target-headers.hmap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveTripartiteManagement.build/CNLiveTripartiteManagement-own-target-headers.hmap","inputs":["<target-CNLiveTripartiteManagement-285b96a559574e49fe0e1a40c03a5a8ec69cdcecdf4ee3a594726fb547f0e760--GeneratedFilesTaskProducer>","<target-CNLiveTripartiteManagement-285b96a559574e49fe0e1a40c03a5a8ec69cdcecdf4ee3a594726fb547f0e760--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveTripartiteManagement.build/CNLiveTripartiteManagement-own-target-headers.hmap"]}
"target-CNLiveTripartiteManagement-285b96a559574e49fe0e1a40c03a5a8ec69cdcecdf4ee3a594726fb547f0e760-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveTripartiteManagement.build/CNLiveTripartiteManagement-project-headers.hmap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveTripartiteManagement.build/CNLiveTripartiteManagement-project-headers.hmap","inputs":["<target-CNLiveTripartiteManagement-285b96a559574e49fe0e1a40c03a5a8ec69cdcecdf4ee3a594726fb547f0e760--GeneratedFilesTaskProducer>","<target-CNLiveTripartiteManagement-285b96a559574e49fe0e1a40c03a5a8ec69cdcecdf4ee3a594726fb547f0e760--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveTripartiteManagement.build/CNLiveTripartiteManagement-project-headers.hmap"]}
"target-CNLiveTripartiteManagement-285b96a559574e49fe0e1a40c03a5a8ec69cdcecdf4ee3a594726fb547f0e760-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveTripartiteManagement.build/CNLiveTripartiteManagement.hmap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveTripartiteManagement.build/CNLiveTripartiteManagement.hmap","inputs":["<target-CNLiveTripartiteManagement-285b96a559574e49fe0e1a40c03a5a8ec69cdcecdf4ee3a594726fb547f0e760--GeneratedFilesTaskProducer>","<target-CNLiveTripartiteManagement-285b96a559574e49fe0e1a40c03a5a8ec69cdcecdf4ee3a594726fb547f0e760--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveTripartiteManagement.build/CNLiveTripartiteManagement.hmap"]}
"target-CNLiveTripartiteManagement-285b96a559574e49fe0e1a40c03a5a8ec69cdcecdf4ee3a594726fb547f0e760-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveTripartiteManagement.build/DerivedSources/CNLiveTripartiteManagement_vers.c": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveTripartiteManagement.build/DerivedSources/CNLiveTripartiteManagement_vers.c","inputs":["<target-CNLiveTripartiteManagement-285b96a559574e49fe0e1a40c03a5a8ec69cdcecdf4ee3a594726fb547f0e760--phase0-copy-headers>","<target-CNLiveTripartiteManagement-285b96a559574e49fe0e1a40c03a5a8ec69cdcecdf4ee3a594726fb547f0e760--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveTripartiteManagement.build/DerivedSources/CNLiveTripartiteManagement_vers.c"]}
"target-CNLiveTripartiteManagement-285b96a559574e49fe0e1a40c03a5a8ec69cdcecdf4ee3a594726fb547f0e760-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveTripartiteManagement.build/Objects-normal/arm64/CNLiveTripartiteManagement.LinkFileList": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveTripartiteManagement.build/Objects-normal/arm64/CNLiveTripartiteManagement.LinkFileList","inputs":["<target-CNLiveTripartiteManagement-285b96a559574e49fe0e1a40c03a5a8ec69cdcecdf4ee3a594726fb547f0e760--phase0-copy-headers>","<target-CNLiveTripartiteManagement-285b96a559574e49fe0e1a40c03a5a8ec69cdcecdf4ee3a594726fb547f0e760--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveTripartiteManagement.build/Objects-normal/arm64/CNLiveTripartiteManagement.LinkFileList"]}
"target-CNLiveTripartiteManagement-285b96a559574e49fe0e1a40c03a5a8ec69cdcecdf4ee3a594726fb547f0e760-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveTripartiteManagement.build/Objects-normal/armv7/CNLiveTripartiteManagement.LinkFileList": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveTripartiteManagement.build/Objects-normal/armv7/CNLiveTripartiteManagement.LinkFileList","inputs":["<target-CNLiveTripartiteManagement-285b96a559574e49fe0e1a40c03a5a8ec69cdcecdf4ee3a594726fb547f0e760--phase0-copy-headers>","<target-CNLiveTripartiteManagement-285b96a559574e49fe0e1a40c03a5a8ec69cdcecdf4ee3a594726fb547f0e760--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveTripartiteManagement.build/Objects-normal/armv7/CNLiveTripartiteManagement.LinkFileList"]}
"target-CNLiveTripartiteManagement-285b96a559574e49fe0e1a40c03a5a8ec69cdcecdf4ee3a594726fb547f0e760-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveTripartiteManagement.build/all-product-headers.yaml": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveTripartiteManagement.build/all-product-headers.yaml","inputs":["<target-CNLiveTripartiteManagement-285b96a559574e49fe0e1a40c03a5a8ec69cdcecdf4ee3a594726fb547f0e760--GeneratedFilesTaskProducer>","<target-CNLiveTripartiteManagement-285b96a559574e49fe0e1a40c03a5a8ec69cdcecdf4ee3a594726fb547f0e760--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveTripartiteManagement.build/all-product-headers.yaml"]}
"target-CNLiveTripartiteManagement-285b96a559574e49fe0e1a40c03a5a8ec69cdcecdf4ee3a594726fb547f0e760-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveTripartiteManagement.build/module.modulemap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveTripartiteManagement.build/module.modulemap","inputs":["<target-CNLiveTripartiteManagement-285b96a559574e49fe0e1a40c03a5a8ec69cdcecdf4ee3a594726fb547f0e760--HeadermapTaskProducer>","<target-CNLiveTripartiteManagement-285b96a559574e49fe0e1a40c03a5a8ec69cdcecdf4ee3a594726fb547f0e760--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveTripartiteManagement.build/module.modulemap"]}
"target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/Objects-normal/arm64/CNLiveUserAgreementManager-dummy.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveUserAgreementManager/CNLiveUserAgreementManager-dummy.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/Objects-normal/arm64/CNLiveUserAgreementManager-dummy.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveUserAgreementManager/CNLiveUserAgreementManager-dummy.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveUserAgreementManager/CNLiveUserAgreementManager-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveUserAgreementManager/CNLiveUserAgreementManager-dummy.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/module.modulemap","<target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4--generated-headers>","<target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4--phase0-copy-headers>","<target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/Objects-normal/arm64/CNLiveUserAgreementManager-dummy.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=CNLiveUserAgreementManager","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/CNLiveUserAgreementManager-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/CNLiveUserAgreementManager-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/CNLiveUserAgreementManager-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/CNLiveUserAgreementManager-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserAgreementManager/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserAgreementManager","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveEnvironment","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveUserAgreementManager/CNLiveUserAgreementManager-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/Objects-normal/arm64/CNLiveUserAgreementManager-dummy.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/Objects-normal/arm64/CNLiveUserAgreementManager-dummy.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveUserAgreementManager/CNLiveUserAgreementManager-dummy.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/Objects-normal/arm64/CNLiveUserAgreementManager-dummy.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/Objects-normal/arm64/CNLiveUserAgreementManager-dummy.d"],"deps-style":"makefile","signature":"cbd648bc8ddca1a2ac4cb1f1a86194bc"}
"target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/Objects-normal/arm64/CNLiveUserAgreementManager.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveUserAgreementManager/CNLiveUserAgreementManager/Classes/CNLiveUserAgreementManager.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/Objects-normal/arm64/CNLiveUserAgreementManager.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveUserAgreementManager/CNLiveUserAgreementManager/Classes/CNLiveUserAgreementManager.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveUserAgreementManager/CNLiveUserAgreementManager-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveUserAgreementManager/CNLiveUserAgreementManager/Classes/CNLiveUserAgreementManager.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/module.modulemap","<target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4--generated-headers>","<target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4--phase0-copy-headers>","<target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/Objects-normal/arm64/CNLiveUserAgreementManager.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=CNLiveUserAgreementManager","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/CNLiveUserAgreementManager-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/CNLiveUserAgreementManager-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/CNLiveUserAgreementManager-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/CNLiveUserAgreementManager-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserAgreementManager/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserAgreementManager","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveEnvironment","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveUserAgreementManager/CNLiveUserAgreementManager-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/Objects-normal/arm64/CNLiveUserAgreementManager.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/Objects-normal/arm64/CNLiveUserAgreementManager.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveUserAgreementManager/CNLiveUserAgreementManager/Classes/CNLiveUserAgreementManager.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/Objects-normal/arm64/CNLiveUserAgreementManager.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/Objects-normal/arm64/CNLiveUserAgreementManager.d"],"deps-style":"makefile","signature":"f46c2607957d41bd88f70e999e2a9edf"}
"target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/Objects-normal/arm64/CNLiveUserAgreementManager_vers.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/DerivedSources/CNLiveUserAgreementManager_vers.c normal arm64 c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/Objects-normal/arm64/CNLiveUserAgreementManager_vers.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/DerivedSources/CNLiveUserAgreementManager_vers.c normal arm64 c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/DerivedSources/CNLiveUserAgreementManager_vers.c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/module.modulemap","<target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4--generated-headers>","<target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4--phase0-copy-headers>","<target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/Objects-normal/arm64/CNLiveUserAgreementManager_vers.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c","-target","arm64-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=CNLiveUserAgreementManager","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Werror=deprecated-objc-isa-usage","-Werror=objc-root-class","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/CNLiveUserAgreementManager-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/CNLiveUserAgreementManager-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/CNLiveUserAgreementManager-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/CNLiveUserAgreementManager-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserAgreementManager/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserAgreementManager","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveEnvironment","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/Objects-normal/arm64/CNLiveUserAgreementManager_vers.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/Objects-normal/arm64/CNLiveUserAgreementManager_vers.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/DerivedSources/CNLiveUserAgreementManager_vers.c","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/Objects-normal/arm64/CNLiveUserAgreementManager_vers.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/Objects-normal/arm64/CNLiveUserAgreementManager_vers.d"],"deps-style":"makefile","signature":"d34c4ef927a89e02ba97b61517a897f0"}
"target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/Objects-normal/arm64/CNLiveUserAgreementWebController.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveUserAgreementManager/CNLiveUserAgreementManager/Classes/CNLiveUserAgreementWebController.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/Objects-normal/arm64/CNLiveUserAgreementWebController.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveUserAgreementManager/CNLiveUserAgreementManager/Classes/CNLiveUserAgreementWebController.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveUserAgreementManager/CNLiveUserAgreementManager-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveUserAgreementManager/CNLiveUserAgreementManager/Classes/CNLiveUserAgreementWebController.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/module.modulemap","<target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4--generated-headers>","<target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4--phase0-copy-headers>","<target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/Objects-normal/arm64/CNLiveUserAgreementWebController.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=CNLiveUserAgreementManager","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/CNLiveUserAgreementManager-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/CNLiveUserAgreementManager-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/CNLiveUserAgreementManager-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/CNLiveUserAgreementManager-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserAgreementManager/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserAgreementManager","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveEnvironment","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveUserAgreementManager/CNLiveUserAgreementManager-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/Objects-normal/arm64/CNLiveUserAgreementWebController.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/Objects-normal/arm64/CNLiveUserAgreementWebController.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveUserAgreementManager/CNLiveUserAgreementManager/Classes/CNLiveUserAgreementWebController.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/Objects-normal/arm64/CNLiveUserAgreementWebController.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/Objects-normal/arm64/CNLiveUserAgreementWebController.d"],"deps-style":"makefile","signature":"231e81cec94e0ed37113bbeca5159e85"}
"target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/Objects-normal/armv7/CNLiveUserAgreementManager-dummy.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveUserAgreementManager/CNLiveUserAgreementManager-dummy.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/Objects-normal/armv7/CNLiveUserAgreementManager-dummy.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveUserAgreementManager/CNLiveUserAgreementManager-dummy.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveUserAgreementManager/CNLiveUserAgreementManager-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveUserAgreementManager/CNLiveUserAgreementManager-dummy.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/module.modulemap","<target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4--generated-headers>","<target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4--phase0-copy-headers>","<target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/Objects-normal/armv7/CNLiveUserAgreementManager-dummy.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=CNLiveUserAgreementManager","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/CNLiveUserAgreementManager-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/CNLiveUserAgreementManager-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/CNLiveUserAgreementManager-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/CNLiveUserAgreementManager-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserAgreementManager/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserAgreementManager","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveEnvironment","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveUserAgreementManager/CNLiveUserAgreementManager-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/Objects-normal/armv7/CNLiveUserAgreementManager-dummy.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/Objects-normal/armv7/CNLiveUserAgreementManager-dummy.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveUserAgreementManager/CNLiveUserAgreementManager-dummy.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/Objects-normal/armv7/CNLiveUserAgreementManager-dummy.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/Objects-normal/armv7/CNLiveUserAgreementManager-dummy.d"],"deps-style":"makefile","signature":"0ec9a496fa0a57622c5ffd5bb52ad46e"}
"target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/Objects-normal/armv7/CNLiveUserAgreementManager.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveUserAgreementManager/CNLiveUserAgreementManager/Classes/CNLiveUserAgreementManager.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/Objects-normal/armv7/CNLiveUserAgreementManager.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveUserAgreementManager/CNLiveUserAgreementManager/Classes/CNLiveUserAgreementManager.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveUserAgreementManager/CNLiveUserAgreementManager-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveUserAgreementManager/CNLiveUserAgreementManager/Classes/CNLiveUserAgreementManager.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/module.modulemap","<target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4--generated-headers>","<target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4--phase0-copy-headers>","<target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/Objects-normal/armv7/CNLiveUserAgreementManager.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=CNLiveUserAgreementManager","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/CNLiveUserAgreementManager-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/CNLiveUserAgreementManager-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/CNLiveUserAgreementManager-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/CNLiveUserAgreementManager-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserAgreementManager/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserAgreementManager","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveEnvironment","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveUserAgreementManager/CNLiveUserAgreementManager-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/Objects-normal/armv7/CNLiveUserAgreementManager.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/Objects-normal/armv7/CNLiveUserAgreementManager.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveUserAgreementManager/CNLiveUserAgreementManager/Classes/CNLiveUserAgreementManager.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/Objects-normal/armv7/CNLiveUserAgreementManager.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/Objects-normal/armv7/CNLiveUserAgreementManager.d"],"deps-style":"makefile","signature":"69059691e2f5249b43b3f23e3940b374"}
"target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/Objects-normal/armv7/CNLiveUserAgreementManager_vers.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/DerivedSources/CNLiveUserAgreementManager_vers.c normal armv7 c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/Objects-normal/armv7/CNLiveUserAgreementManager_vers.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/DerivedSources/CNLiveUserAgreementManager_vers.c normal armv7 c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/DerivedSources/CNLiveUserAgreementManager_vers.c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/module.modulemap","<target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4--generated-headers>","<target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4--phase0-copy-headers>","<target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/Objects-normal/armv7/CNLiveUserAgreementManager_vers.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c","-target","armv7-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=CNLiveUserAgreementManager","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Werror=deprecated-objc-isa-usage","-Werror=objc-root-class","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/CNLiveUserAgreementManager-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/CNLiveUserAgreementManager-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/CNLiveUserAgreementManager-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/CNLiveUserAgreementManager-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserAgreementManager/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserAgreementManager","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveEnvironment","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/Objects-normal/armv7/CNLiveUserAgreementManager_vers.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/Objects-normal/armv7/CNLiveUserAgreementManager_vers.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/DerivedSources/CNLiveUserAgreementManager_vers.c","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/Objects-normal/armv7/CNLiveUserAgreementManager_vers.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/Objects-normal/armv7/CNLiveUserAgreementManager_vers.d"],"deps-style":"makefile","signature":"bdb72eb025eac5da5c7b0f613ff77bf2"}
"target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/Objects-normal/armv7/CNLiveUserAgreementWebController.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveUserAgreementManager/CNLiveUserAgreementManager/Classes/CNLiveUserAgreementWebController.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/Objects-normal/armv7/CNLiveUserAgreementWebController.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveUserAgreementManager/CNLiveUserAgreementManager/Classes/CNLiveUserAgreementWebController.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveUserAgreementManager/CNLiveUserAgreementManager-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveUserAgreementManager/CNLiveUserAgreementManager/Classes/CNLiveUserAgreementWebController.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/module.modulemap","<target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4--generated-headers>","<target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4--phase0-copy-headers>","<target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/Objects-normal/armv7/CNLiveUserAgreementWebController.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=CNLiveUserAgreementManager","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/CNLiveUserAgreementManager-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/CNLiveUserAgreementManager-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/CNLiveUserAgreementManager-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/CNLiveUserAgreementManager-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserAgreementManager/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserAgreementManager","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveEnvironment","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveUserAgreementManager/CNLiveUserAgreementManager-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/Objects-normal/armv7/CNLiveUserAgreementWebController.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/Objects-normal/armv7/CNLiveUserAgreementWebController.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveUserAgreementManager/CNLiveUserAgreementManager/Classes/CNLiveUserAgreementWebController.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/Objects-normal/armv7/CNLiveUserAgreementWebController.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/Objects-normal/armv7/CNLiveUserAgreementWebController.d"],"deps-style":"makefile","signature":"98a7fdabe829a980ccc5bacb7da714be"}
"target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveUserAgreementManager/CNLiveUserAgreementManager/Classes/CNLiveUserAgreementManager.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserAgreementManager/CNLiveUserAgreementManager.framework/Headers/CNLiveUserAgreementManager.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveUserAgreementManager/CNLiveUserAgreementManager/Classes/CNLiveUserAgreementManager.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserAgreementManager/CNLiveUserAgreementManager.framework/Headers/CNLiveUserAgreementManager.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveUserAgreementManager/CNLiveUserAgreementManager/Classes/CNLiveUserAgreementManager.h/","<target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4--HeadermapTaskProducer>","<target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserAgreementManager/CNLiveUserAgreementManager.framework/Headers/CNLiveUserAgreementManager.h"]}
"target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveUserAgreementManager/CNLiveUserAgreementManager/Classes/CNLiveUserAgreementWebController.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserAgreementManager/CNLiveUserAgreementManager.framework/Headers/CNLiveUserAgreementWebController.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveUserAgreementManager/CNLiveUserAgreementManager/Classes/CNLiveUserAgreementWebController.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserAgreementManager/CNLiveUserAgreementManager.framework/Headers/CNLiveUserAgreementWebController.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveUserAgreementManager/CNLiveUserAgreementManager/Classes/CNLiveUserAgreementWebController.h/","<target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4--HeadermapTaskProducer>","<target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserAgreementManager/CNLiveUserAgreementManager.framework/Headers/CNLiveUserAgreementWebController.h"]}
"target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveUserAgreementManager/CNLiveUserAgreementManager-umbrella.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserAgreementManager/CNLiveUserAgreementManager.framework/Headers/CNLiveUserAgreementManager-umbrella.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveUserAgreementManager/CNLiveUserAgreementManager-umbrella.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserAgreementManager/CNLiveUserAgreementManager.framework/Headers/CNLiveUserAgreementManager-umbrella.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveUserAgreementManager/CNLiveUserAgreementManager-umbrella.h/","<target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4--HeadermapTaskProducer>","<target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserAgreementManager/CNLiveUserAgreementManager.framework/Headers/CNLiveUserAgreementManager-umbrella.h"]}
"target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4-:Debug:CpResource /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserAgreementManager/CNLiveUserAgreementManager.bundle /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserAgreementManager/CNLiveUserAgreementManager.framework/CNLiveUserAgreementManager.bundle": {"tool":"file-copy","description":"CpResource /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserAgreementManager/CNLiveUserAgreementManager.bundle /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserAgreementManager/CNLiveUserAgreementManager.framework/CNLiveUserAgreementManager.bundle","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserAgreementManager/CNLiveUserAgreementManager.bundle/","<target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4--phase1-compile-sources>","<target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserAgreementManager/CNLiveUserAgreementManager.framework/CNLiveUserAgreementManager.bundle"]}
"target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4-:Debug:CreateUniversalBinary /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserAgreementManager/CNLiveUserAgreementManager.framework/CNLiveUserAgreementManager normal armv7 arm64": {"tool":"shell","description":"CreateUniversalBinary /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserAgreementManager/CNLiveUserAgreementManager.framework/CNLiveUserAgreementManager normal armv7 arm64","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/Objects-normal/armv7/Binary/CNLiveUserAgreementManager","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/Objects-normal/arm64/Binary/CNLiveUserAgreementManager","<target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4--phase0-copy-headers>","<target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserAgreementManager/CNLiveUserAgreementManager.framework/CNLiveUserAgreementManager","<Linked Binary /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserAgreementManager/CNLiveUserAgreementManager.framework/CNLiveUserAgreementManager>"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/lipo","-create","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/Objects-normal/armv7/Binary/CNLiveUserAgreementManager","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/Objects-normal/arm64/Binary/CNLiveUserAgreementManager","-output","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserAgreementManager/CNLiveUserAgreementManager.framework/CNLiveUserAgreementManager"],"env":{},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","signature":"5f69f71805792db05932e3e10c4408ec"}
"target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4-:Debug:Ditto /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/module.modulemap /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserAgreementManager/CNLiveUserAgreementManager.framework/Modules/module.modulemap": {"tool":"file-copy","description":"Ditto /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/module.modulemap /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserAgreementManager/CNLiveUserAgreementManager.framework/Modules/module.modulemap","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/module.modulemap/","<target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4--HeadermapTaskProducer>","<target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserAgreementManager/CNLiveUserAgreementManager.framework/Modules/module.modulemap"]}
"target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4-:Debug:Ld /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/Objects-normal/arm64/Binary/CNLiveUserAgreementManager normal arm64": {"tool":"shell","description":"Ld /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/Objects-normal/arm64/Binary/CNLiveUserAgreementManager normal arm64","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/Objects-normal/arm64/CNLiveUserAgreementManager-dummy.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/Objects-normal/arm64/CNLiveUserAgreementManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/Objects-normal/arm64/CNLiveUserAgreementWebController.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/Objects-normal/arm64/CNLiveUserAgreementManager_vers.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/Objects-normal/arm64/CNLiveUserAgreementManager.LinkFileList","<target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4--phase0-copy-headers>","<target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/Objects-normal/arm64/Binary/CNLiveUserAgreementManager"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-target","arm64-apple-ios9.0","-dynamiclib","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-L/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserAgreementManager","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserAgreementManager","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveEnvironment","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit","-filelist","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/Objects-normal/arm64/CNLiveUserAgreementManager.LinkFileList","-install_name","@rpath/CNLiveUserAgreementManager.framework/CNLiveUserAgreementManager","-Xlinker","-rpath","-Xlinker","@executable_path/Frameworks","-Xlinker","-rpath","-Xlinker","@loader_path/Frameworks","-dead_strip","-Xlinker","-object_path_lto","-Xlinker","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/Objects-normal/arm64/CNLiveUserAgreementManager_lto.o","-Xlinker","-export_dynamic","-Xlinker","-no_deduplicate","-fembed-bitcode-marker","-fobjc-arc","-fobjc-link-runtime","-framework","CNLiveEnvironment","-framework","CNLiveRequestBastKit","-framework","Foundation","-compatibility_version","1","-current_version","1","-Xlinker","-dependency_info","-Xlinker","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/Objects-normal/arm64/CNLiveUserAgreementManager_dependency_info.dat","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/Objects-normal/arm64/Binary/CNLiveUserAgreementManager"],"env":{},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/Objects-normal/arm64/CNLiveUserAgreementManager_dependency_info.dat"],"deps-style":"dependency-info","signature":"bcf84a049441b17dcf8a55021e5ba07c"}
"target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4-:Debug:Ld /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/Objects-normal/armv7/Binary/CNLiveUserAgreementManager normal armv7": {"tool":"shell","description":"Ld /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/Objects-normal/armv7/Binary/CNLiveUserAgreementManager normal armv7","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/Objects-normal/armv7/CNLiveUserAgreementManager-dummy.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/Objects-normal/armv7/CNLiveUserAgreementManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/Objects-normal/armv7/CNLiveUserAgreementWebController.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/Objects-normal/armv7/CNLiveUserAgreementManager_vers.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/Objects-normal/armv7/CNLiveUserAgreementManager.LinkFileList","<target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4--phase0-copy-headers>","<target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/Objects-normal/armv7/Binary/CNLiveUserAgreementManager"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-target","armv7-apple-ios9.0","-dynamiclib","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-L/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserAgreementManager","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserAgreementManager","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveEnvironment","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit","-filelist","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/Objects-normal/armv7/CNLiveUserAgreementManager.LinkFileList","-install_name","@rpath/CNLiveUserAgreementManager.framework/CNLiveUserAgreementManager","-Xlinker","-rpath","-Xlinker","@executable_path/Frameworks","-Xlinker","-rpath","-Xlinker","@loader_path/Frameworks","-dead_strip","-Xlinker","-object_path_lto","-Xlinker","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/Objects-normal/armv7/CNLiveUserAgreementManager_lto.o","-Xlinker","-export_dynamic","-Xlinker","-no_deduplicate","-fembed-bitcode-marker","-fobjc-arc","-fobjc-link-runtime","-framework","CNLiveEnvironment","-framework","CNLiveRequestBastKit","-framework","Foundation","-compatibility_version","1","-current_version","1","-Xlinker","-dependency_info","-Xlinker","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/Objects-normal/armv7/CNLiveUserAgreementManager_dependency_info.dat","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/Objects-normal/armv7/Binary/CNLiveUserAgreementManager"],"env":{},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/Objects-normal/armv7/CNLiveUserAgreementManager_dependency_info.dat"],"deps-style":"dependency-info","signature":"e82a08d0422559f5607ad81a5cb01af3"}
"target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4-:Debug:MkDir /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserAgreementManager/CNLiveUserAgreementManager.framework": {"tool":"mkdir","description":"MkDir /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserAgreementManager/CNLiveUserAgreementManager.framework","inputs":["<target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4--start>","<target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserAgreementManager/CNLiveUserAgreementManager.framework","<MkDir /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserAgreementManager/CNLiveUserAgreementManager.framework>"]}
"target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4-:Debug:MkDir /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserAgreementManager/CNLiveUserAgreementManager.framework/Headers": {"tool":"mkdir","description":"MkDir /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserAgreementManager/CNLiveUserAgreementManager.framework/Headers","inputs":["<target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4--start>","<target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserAgreementManager/CNLiveUserAgreementManager.framework/Headers","<MkDir /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserAgreementManager/CNLiveUserAgreementManager.framework/Headers>"]}
"target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4-:Debug:ProcessInfoPlistFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserAgreementManager/CNLiveUserAgreementManager.framework/Info.plist /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveUserAgreementManager/CNLiveUserAgreementManager-Info.plist": {"tool":"info-plist-processor","description":"ProcessInfoPlistFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserAgreementManager/CNLiveUserAgreementManager.framework/Info.plist /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveUserAgreementManager/CNLiveUserAgreementManager-Info.plist","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveUserAgreementManager/CNLiveUserAgreementManager-Info.plist","<target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4--HeadermapTaskProducer>","<target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserAgreementManager/CNLiveUserAgreementManager.framework/Info.plist"]}
"target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4-:Debug:Touch /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserAgreementManager/CNLiveUserAgreementManager.framework": {"tool":"shell","description":"Touch /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserAgreementManager/CNLiveUserAgreementManager.framework","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserAgreementManager/CNLiveUserAgreementManager.framework","<target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4--Barrier-RegisterExecutionPolicyException>","<target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4--entry>"],"outputs":["<Touch /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserAgreementManager/CNLiveUserAgreementManager.framework>"],"args":["/usr/bin/touch","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserAgreementManager/CNLiveUserAgreementManager.framework"],"env":{},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","signature":"785530bafeb4d7425c34c62368ba0a00"}
"target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/CNLiveUserAgreementManager-all-non-framework-target-headers.hmap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/CNLiveUserAgreementManager-all-non-framework-target-headers.hmap","inputs":["<target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4--GeneratedFilesTaskProducer>","<target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/CNLiveUserAgreementManager-all-non-framework-target-headers.hmap"]}
"target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/CNLiveUserAgreementManager-all-target-headers.hmap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/CNLiveUserAgreementManager-all-target-headers.hmap","inputs":["<target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4--GeneratedFilesTaskProducer>","<target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/CNLiveUserAgreementManager-all-target-headers.hmap"]}
"target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/CNLiveUserAgreementManager-generated-files.hmap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/CNLiveUserAgreementManager-generated-files.hmap","inputs":["<target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4--GeneratedFilesTaskProducer>","<target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/CNLiveUserAgreementManager-generated-files.hmap"]}
"target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/CNLiveUserAgreementManager-own-target-headers.hmap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/CNLiveUserAgreementManager-own-target-headers.hmap","inputs":["<target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4--GeneratedFilesTaskProducer>","<target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/CNLiveUserAgreementManager-own-target-headers.hmap"]}
"target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/CNLiveUserAgreementManager-project-headers.hmap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/CNLiveUserAgreementManager-project-headers.hmap","inputs":["<target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4--GeneratedFilesTaskProducer>","<target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/CNLiveUserAgreementManager-project-headers.hmap"]}
"target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/CNLiveUserAgreementManager.hmap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/CNLiveUserAgreementManager.hmap","inputs":["<target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4--GeneratedFilesTaskProducer>","<target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/CNLiveUserAgreementManager.hmap"]}
"target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/DerivedSources/CNLiveUserAgreementManager_vers.c": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/DerivedSources/CNLiveUserAgreementManager_vers.c","inputs":["<target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4--phase0-copy-headers>","<target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/DerivedSources/CNLiveUserAgreementManager_vers.c"]}
"target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/Objects-normal/arm64/CNLiveUserAgreementManager.LinkFileList": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/Objects-normal/arm64/CNLiveUserAgreementManager.LinkFileList","inputs":["<target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4--phase0-copy-headers>","<target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/Objects-normal/arm64/CNLiveUserAgreementManager.LinkFileList"]}
"target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/Objects-normal/armv7/CNLiveUserAgreementManager.LinkFileList": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/Objects-normal/armv7/CNLiveUserAgreementManager.LinkFileList","inputs":["<target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4--phase0-copy-headers>","<target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/Objects-normal/armv7/CNLiveUserAgreementManager.LinkFileList"]}
"target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/all-product-headers.yaml": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/all-product-headers.yaml","inputs":["<target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4--GeneratedFilesTaskProducer>","<target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/all-product-headers.yaml"]}
"target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/module.modulemap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/module.modulemap","inputs":["<target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4--HeadermapTaskProducer>","<target-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ea0a163752dcdb8105eb1d7b027cad5a4--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager.build/module.modulemap"]}
"target-CNLiveUserAgreementManager-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ef20c2af33041468e717003000e83c9d2-:Debug:CompileAssetCatalog /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserAgreementManager/CNLiveUserAgreementManager.bundle /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveUserAgreementManager/CNLiveUserAgreementManager/Assets/CNLiveUserAgreementManager.xcassets": {"tool":"shell","description":"CompileAssetCatalog /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserAgreementManager/CNLiveUserAgreementManager.bundle /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveUserAgreementManager/CNLiveUserAgreementManager/Assets/CNLiveUserAgreementManager.xcassets","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveUserAgreementManager/CNLiveUserAgreementManager/Assets/CNLiveUserAgreementManager.xcassets/","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserAgreementManager/CNLiveUserAgreementManager.bundle","<target-CNLiveUserAgreementManager-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ef20c2af33041468e717003000e83c9d2--phase0-compile-sources>","<target-CNLiveUserAgreementManager-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ef20c2af33041468e717003000e83c9d2--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager-CNLiveUserAgreementManager.build/assetcatalog_generated_info.plist","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserAgreementManager/CNLiveUserAgreementManager.bundle/Assets.car"],"args":["/Applications/Xcode.app/Contents/Developer/usr/bin/actool","--output-format","human-readable-text","--notices","--warnings","--export-dependency-info","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager-CNLiveUserAgreementManager.build/assetcatalog_dependencies","--output-partial-info-plist","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager-CNLiveUserAgreementManager.build/assetcatalog_generated_info.plist","--compress-pngs","--enable-on-demand-resources","NO","--sticker-pack-identifier-prefix","org.cocoapods.CNLiveUserAgreementManager.sticker-pack.","--development-region","en","--target-device","iphone","--target-device","ipad","--minimum-deployment-target","9.0","--platform","iphoneos","--product-type","com.apple.product-type.bundle","--compile","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserAgreementManager/CNLiveUserAgreementManager.bundle","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveUserAgreementManager/CNLiveUserAgreementManager/Assets/CNLiveUserAgreementManager.xcassets"],"env":{},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","control-enabled":false,"deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager-CNLiveUserAgreementManager.build/assetcatalog_dependencies"],"deps-style":"dependency-info","signature":"7a5a464828dc301919dc1b4cc31e8214"}
"target-CNLiveUserAgreementManager-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ef20c2af33041468e717003000e83c9d2-:Debug:MkDir /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserAgreementManager/CNLiveUserAgreementManager.bundle": {"tool":"mkdir","description":"MkDir /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserAgreementManager/CNLiveUserAgreementManager.bundle","inputs":["<target-CNLiveUserAgreementManager-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ef20c2af33041468e717003000e83c9d2--start>","<target-CNLiveUserAgreementManager-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ef20c2af33041468e717003000e83c9d2--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserAgreementManager/CNLiveUserAgreementManager.bundle","<MkDir /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserAgreementManager/CNLiveUserAgreementManager.bundle>"]}
"target-CNLiveUserAgreementManager-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ef20c2af33041468e717003000e83c9d2-:Debug:ProcessInfoPlistFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserAgreementManager/CNLiveUserAgreementManager.bundle/Info.plist /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveUserAgreementManager/ResourceBundle-CNLiveUserAgreementManager-CNLiveUserAgreementManager-Info.plist": {"tool":"info-plist-processor","description":"ProcessInfoPlistFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserAgreementManager/CNLiveUserAgreementManager.bundle/Info.plist /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveUserAgreementManager/ResourceBundle-CNLiveUserAgreementManager-CNLiveUserAgreementManager-Info.plist","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveUserAgreementManager/ResourceBundle-CNLiveUserAgreementManager-CNLiveUserAgreementManager-Info.plist","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager-CNLiveUserAgreementManager.build/assetcatalog_generated_info.plist","<target-CNLiveUserAgreementManager-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ef20c2af33041468e717003000e83c9d2--HeadermapTaskProducer>","<target-CNLiveUserAgreementManager-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ef20c2af33041468e717003000e83c9d2--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserAgreementManager/CNLiveUserAgreementManager.bundle/Info.plist"]}
"target-CNLiveUserAgreementManager-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ef20c2af33041468e717003000e83c9d2-:Debug:Touch /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserAgreementManager/CNLiveUserAgreementManager.bundle": {"tool":"shell","description":"Touch /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserAgreementManager/CNLiveUserAgreementManager.bundle","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserAgreementManager/CNLiveUserAgreementManager.bundle","<target-CNLiveUserAgreementManager-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ef20c2af33041468e717003000e83c9d2--Barrier-RegisterExecutionPolicyException>","<target-CNLiveUserAgreementManager-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ef20c2af33041468e717003000e83c9d2--entry>"],"outputs":["<Touch /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserAgreementManager/CNLiveUserAgreementManager.bundle>"],"args":["/usr/bin/touch","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserAgreementManager/CNLiveUserAgreementManager.bundle"],"env":{},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","signature":"8771fc987835e80e764dd8da79f07fbe"}
"target-CNLiveUserAgreementManager-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ef20c2af33041468e717003000e83c9d2-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager-CNLiveUserAgreementManager.build/CNLiveUserAgreementManager-all-non-framework-target-headers.hmap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager-CNLiveUserAgreementManager.build/CNLiveUserAgreementManager-all-non-framework-target-headers.hmap","inputs":["<target-CNLiveUserAgreementManager-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ef20c2af33041468e717003000e83c9d2--GeneratedFilesTaskProducer>","<target-CNLiveUserAgreementManager-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ef20c2af33041468e717003000e83c9d2--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager-CNLiveUserAgreementManager.build/CNLiveUserAgreementManager-all-non-framework-target-headers.hmap"]}
"target-CNLiveUserAgreementManager-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ef20c2af33041468e717003000e83c9d2-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager-CNLiveUserAgreementManager.build/CNLiveUserAgreementManager-all-target-headers.hmap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager-CNLiveUserAgreementManager.build/CNLiveUserAgreementManager-all-target-headers.hmap","inputs":["<target-CNLiveUserAgreementManager-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ef20c2af33041468e717003000e83c9d2--GeneratedFilesTaskProducer>","<target-CNLiveUserAgreementManager-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ef20c2af33041468e717003000e83c9d2--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager-CNLiveUserAgreementManager.build/CNLiveUserAgreementManager-all-target-headers.hmap"]}
"target-CNLiveUserAgreementManager-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ef20c2af33041468e717003000e83c9d2-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager-CNLiveUserAgreementManager.build/CNLiveUserAgreementManager-generated-files.hmap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager-CNLiveUserAgreementManager.build/CNLiveUserAgreementManager-generated-files.hmap","inputs":["<target-CNLiveUserAgreementManager-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ef20c2af33041468e717003000e83c9d2--GeneratedFilesTaskProducer>","<target-CNLiveUserAgreementManager-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ef20c2af33041468e717003000e83c9d2--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager-CNLiveUserAgreementManager.build/CNLiveUserAgreementManager-generated-files.hmap"]}
"target-CNLiveUserAgreementManager-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ef20c2af33041468e717003000e83c9d2-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager-CNLiveUserAgreementManager.build/CNLiveUserAgreementManager-own-target-headers.hmap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager-CNLiveUserAgreementManager.build/CNLiveUserAgreementManager-own-target-headers.hmap","inputs":["<target-CNLiveUserAgreementManager-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ef20c2af33041468e717003000e83c9d2--GeneratedFilesTaskProducer>","<target-CNLiveUserAgreementManager-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ef20c2af33041468e717003000e83c9d2--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager-CNLiveUserAgreementManager.build/CNLiveUserAgreementManager-own-target-headers.hmap"]}
"target-CNLiveUserAgreementManager-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ef20c2af33041468e717003000e83c9d2-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager-CNLiveUserAgreementManager.build/CNLiveUserAgreementManager-project-headers.hmap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager-CNLiveUserAgreementManager.build/CNLiveUserAgreementManager-project-headers.hmap","inputs":["<target-CNLiveUserAgreementManager-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ef20c2af33041468e717003000e83c9d2--GeneratedFilesTaskProducer>","<target-CNLiveUserAgreementManager-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ef20c2af33041468e717003000e83c9d2--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager-CNLiveUserAgreementManager.build/CNLiveUserAgreementManager-project-headers.hmap"]}
"target-CNLiveUserAgreementManager-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ef20c2af33041468e717003000e83c9d2-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager-CNLiveUserAgreementManager.build/CNLiveUserAgreementManager.hmap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager-CNLiveUserAgreementManager.build/CNLiveUserAgreementManager.hmap","inputs":["<target-CNLiveUserAgreementManager-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ef20c2af33041468e717003000e83c9d2--GeneratedFilesTaskProducer>","<target-CNLiveUserAgreementManager-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ef20c2af33041468e717003000e83c9d2--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager-CNLiveUserAgreementManager.build/CNLiveUserAgreementManager.hmap"]}
"target-CNLiveUserAgreementManager-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ef20c2af33041468e717003000e83c9d2-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager-CNLiveUserAgreementManager.build/all-product-headers.yaml": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager-CNLiveUserAgreementManager.build/all-product-headers.yaml","inputs":["<target-CNLiveUserAgreementManager-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ef20c2af33041468e717003000e83c9d2--GeneratedFilesTaskProducer>","<target-CNLiveUserAgreementManager-CNLiveUserAgreementManager-285b96a559574e49fe0e1a40c03a5a8ef20c2af33041468e717003000e83c9d2--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserAgreementManager-CNLiveUserAgreementManager.build/all-product-headers.yaml"]}
"target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/Objects-normal/arm64/CNLiveUserManagement-dummy.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveUserManagement/CNLiveUserManagement-dummy.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/Objects-normal/arm64/CNLiveUserManagement-dummy.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveUserManagement/CNLiveUserManagement-dummy.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveUserManagement/CNLiveUserManagement-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveUserManagement/CNLiveUserManagement-dummy.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/module.modulemap","<target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea--generated-headers>","<target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea--phase0-copy-headers>","<target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/Objects-normal/arm64/CNLiveUserManagement-dummy.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=CNLiveUserManagement","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/CNLiveUserManagement-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/CNLiveUserManagement-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/CNLiveUserManagement-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/CNLiveUserManagement-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserManagement/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserManagement","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveTripartiteManagement","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveUserManagement/CNLiveUserManagement-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/Objects-normal/arm64/CNLiveUserManagement-dummy.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/Objects-normal/arm64/CNLiveUserManagement-dummy.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveUserManagement/CNLiveUserManagement-dummy.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/Objects-normal/arm64/CNLiveUserManagement-dummy.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/Objects-normal/arm64/CNLiveUserManagement-dummy.d"],"deps-style":"makefile","signature":"f8242f444b60530cd9979588e114f656"}
"target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/Objects-normal/arm64/CNLiveUserManagement_vers.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/DerivedSources/CNLiveUserManagement_vers.c normal arm64 c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/Objects-normal/arm64/CNLiveUserManagement_vers.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/DerivedSources/CNLiveUserManagement_vers.c normal arm64 c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/DerivedSources/CNLiveUserManagement_vers.c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/module.modulemap","<target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea--generated-headers>","<target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea--phase0-copy-headers>","<target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/Objects-normal/arm64/CNLiveUserManagement_vers.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c","-target","arm64-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=CNLiveUserManagement","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Werror=deprecated-objc-isa-usage","-Werror=objc-root-class","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/CNLiveUserManagement-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/CNLiveUserManagement-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/CNLiveUserManagement-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/CNLiveUserManagement-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserManagement/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserManagement","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveTripartiteManagement","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/Objects-normal/arm64/CNLiveUserManagement_vers.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/Objects-normal/arm64/CNLiveUserManagement_vers.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/DerivedSources/CNLiveUserManagement_vers.c","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/Objects-normal/arm64/CNLiveUserManagement_vers.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/Objects-normal/arm64/CNLiveUserManagement_vers.d"],"deps-style":"makefile","signature":"6acd91fd5d3904bb57e4b598566169fe"}
"target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/Objects-normal/arm64/CNUserInfoManager.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveUserManagement/CNLiveUserManagement/Classes/CNUserInfoManager.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/Objects-normal/arm64/CNUserInfoManager.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveUserManagement/CNLiveUserManagement/Classes/CNUserInfoManager.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveUserManagement/CNLiveUserManagement-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveUserManagement/CNLiveUserManagement/Classes/CNUserInfoManager.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/module.modulemap","<target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea--generated-headers>","<target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea--phase0-copy-headers>","<target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/Objects-normal/arm64/CNUserInfoManager.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=CNLiveUserManagement","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/CNLiveUserManagement-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/CNLiveUserManagement-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/CNLiveUserManagement-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/CNLiveUserManagement-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserManagement/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserManagement","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveTripartiteManagement","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveUserManagement/CNLiveUserManagement-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/Objects-normal/arm64/CNUserInfoManager.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/Objects-normal/arm64/CNUserInfoManager.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveUserManagement/CNLiveUserManagement/Classes/CNUserInfoManager.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/Objects-normal/arm64/CNUserInfoManager.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/Objects-normal/arm64/CNUserInfoManager.d"],"deps-style":"makefile","signature":"e4afbcaddff5abd7f34e65ec19253e9a"}
"target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/Objects-normal/arm64/CNUserInfoModel.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveUserManagement/CNLiveUserManagement/Classes/CNUserInfoModel.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/Objects-normal/arm64/CNUserInfoModel.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveUserManagement/CNLiveUserManagement/Classes/CNUserInfoModel.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveUserManagement/CNLiveUserManagement-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveUserManagement/CNLiveUserManagement/Classes/CNUserInfoModel.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/module.modulemap","<target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea--generated-headers>","<target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea--phase0-copy-headers>","<target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/Objects-normal/arm64/CNUserInfoModel.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=CNLiveUserManagement","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/CNLiveUserManagement-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/CNLiveUserManagement-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/CNLiveUserManagement-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/CNLiveUserManagement-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserManagement/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserManagement","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveTripartiteManagement","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveUserManagement/CNLiveUserManagement-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/Objects-normal/arm64/CNUserInfoModel.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/Objects-normal/arm64/CNUserInfoModel.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveUserManagement/CNLiveUserManagement/Classes/CNUserInfoModel.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/Objects-normal/arm64/CNUserInfoModel.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/Objects-normal/arm64/CNUserInfoModel.d"],"deps-style":"makefile","signature":"dc077df6bfb9eca2c4e880b84e60e15e"}
"target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/Objects-normal/armv7/CNLiveUserManagement-dummy.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveUserManagement/CNLiveUserManagement-dummy.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/Objects-normal/armv7/CNLiveUserManagement-dummy.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveUserManagement/CNLiveUserManagement-dummy.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveUserManagement/CNLiveUserManagement-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveUserManagement/CNLiveUserManagement-dummy.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/module.modulemap","<target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea--generated-headers>","<target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea--phase0-copy-headers>","<target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/Objects-normal/armv7/CNLiveUserManagement-dummy.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=CNLiveUserManagement","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/CNLiveUserManagement-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/CNLiveUserManagement-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/CNLiveUserManagement-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/CNLiveUserManagement-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserManagement/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserManagement","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveTripartiteManagement","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveUserManagement/CNLiveUserManagement-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/Objects-normal/armv7/CNLiveUserManagement-dummy.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/Objects-normal/armv7/CNLiveUserManagement-dummy.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveUserManagement/CNLiveUserManagement-dummy.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/Objects-normal/armv7/CNLiveUserManagement-dummy.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/Objects-normal/armv7/CNLiveUserManagement-dummy.d"],"deps-style":"makefile","signature":"4c00ebb4fce9c0249e8d75d1178a22f0"}
"target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/Objects-normal/armv7/CNLiveUserManagement_vers.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/DerivedSources/CNLiveUserManagement_vers.c normal armv7 c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/Objects-normal/armv7/CNLiveUserManagement_vers.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/DerivedSources/CNLiveUserManagement_vers.c normal armv7 c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/DerivedSources/CNLiveUserManagement_vers.c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/module.modulemap","<target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea--generated-headers>","<target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea--phase0-copy-headers>","<target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/Objects-normal/armv7/CNLiveUserManagement_vers.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c","-target","armv7-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=CNLiveUserManagement","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Werror=deprecated-objc-isa-usage","-Werror=objc-root-class","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/CNLiveUserManagement-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/CNLiveUserManagement-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/CNLiveUserManagement-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/CNLiveUserManagement-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserManagement/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserManagement","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveTripartiteManagement","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/Objects-normal/armv7/CNLiveUserManagement_vers.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/Objects-normal/armv7/CNLiveUserManagement_vers.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/DerivedSources/CNLiveUserManagement_vers.c","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/Objects-normal/armv7/CNLiveUserManagement_vers.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/Objects-normal/armv7/CNLiveUserManagement_vers.d"],"deps-style":"makefile","signature":"7036b3473022b6f9922e99f9b406e01b"}
"target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/Objects-normal/armv7/CNUserInfoManager.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveUserManagement/CNLiveUserManagement/Classes/CNUserInfoManager.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/Objects-normal/armv7/CNUserInfoManager.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveUserManagement/CNLiveUserManagement/Classes/CNUserInfoManager.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveUserManagement/CNLiveUserManagement-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveUserManagement/CNLiveUserManagement/Classes/CNUserInfoManager.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/module.modulemap","<target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea--generated-headers>","<target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea--phase0-copy-headers>","<target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/Objects-normal/armv7/CNUserInfoManager.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=CNLiveUserManagement","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/CNLiveUserManagement-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/CNLiveUserManagement-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/CNLiveUserManagement-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/CNLiveUserManagement-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserManagement/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserManagement","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveTripartiteManagement","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveUserManagement/CNLiveUserManagement-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/Objects-normal/armv7/CNUserInfoManager.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/Objects-normal/armv7/CNUserInfoManager.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveUserManagement/CNLiveUserManagement/Classes/CNUserInfoManager.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/Objects-normal/armv7/CNUserInfoManager.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/Objects-normal/armv7/CNUserInfoManager.d"],"deps-style":"makefile","signature":"1b183b7ecd941d74564a2a3b31e3e08e"}
"target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/Objects-normal/armv7/CNUserInfoModel.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveUserManagement/CNLiveUserManagement/Classes/CNUserInfoModel.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/Objects-normal/armv7/CNUserInfoModel.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveUserManagement/CNLiveUserManagement/Classes/CNUserInfoModel.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveUserManagement/CNLiveUserManagement-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveUserManagement/CNLiveUserManagement/Classes/CNUserInfoModel.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/module.modulemap","<target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea--generated-headers>","<target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea--phase0-copy-headers>","<target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/Objects-normal/armv7/CNUserInfoModel.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=CNLiveUserManagement","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/CNLiveUserManagement-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/CNLiveUserManagement-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/CNLiveUserManagement-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/CNLiveUserManagement-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserManagement/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserManagement","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveTripartiteManagement","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveUserManagement/CNLiveUserManagement-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/Objects-normal/armv7/CNUserInfoModel.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/Objects-normal/armv7/CNUserInfoModel.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveUserManagement/CNLiveUserManagement/Classes/CNUserInfoModel.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/Objects-normal/armv7/CNUserInfoModel.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/Objects-normal/armv7/CNUserInfoModel.d"],"deps-style":"makefile","signature":"c3ce5698da852363bcd96a6758a2e72d"}
"target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveUserManagement/CNLiveUserManagement/Classes/CNUserInfoManager.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserManagement/CNLiveUserManagement.framework/Headers/CNUserInfoManager.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveUserManagement/CNLiveUserManagement/Classes/CNUserInfoManager.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserManagement/CNLiveUserManagement.framework/Headers/CNUserInfoManager.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveUserManagement/CNLiveUserManagement/Classes/CNUserInfoManager.h/","<target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea--HeadermapTaskProducer>","<target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserManagement/CNLiveUserManagement.framework/Headers/CNUserInfoManager.h"]}
"target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveUserManagement/CNLiveUserManagement/Classes/CNUserInfoModel.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserManagement/CNLiveUserManagement.framework/Headers/CNUserInfoModel.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveUserManagement/CNLiveUserManagement/Classes/CNUserInfoModel.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserManagement/CNLiveUserManagement.framework/Headers/CNUserInfoModel.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/CNLiveUserManagement/CNLiveUserManagement/Classes/CNUserInfoModel.h/","<target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea--HeadermapTaskProducer>","<target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserManagement/CNLiveUserManagement.framework/Headers/CNUserInfoModel.h"]}
"target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveUserManagement/CNLiveUserManagement-umbrella.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserManagement/CNLiveUserManagement.framework/Headers/CNLiveUserManagement-umbrella.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveUserManagement/CNLiveUserManagement-umbrella.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserManagement/CNLiveUserManagement.framework/Headers/CNLiveUserManagement-umbrella.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveUserManagement/CNLiveUserManagement-umbrella.h/","<target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea--HeadermapTaskProducer>","<target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserManagement/CNLiveUserManagement.framework/Headers/CNLiveUserManagement-umbrella.h"]}
"target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea-:Debug:CreateUniversalBinary /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserManagement/CNLiveUserManagement.framework/CNLiveUserManagement normal armv7 arm64": {"tool":"shell","description":"CreateUniversalBinary /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserManagement/CNLiveUserManagement.framework/CNLiveUserManagement normal armv7 arm64","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/Objects-normal/armv7/Binary/CNLiveUserManagement","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/Objects-normal/arm64/Binary/CNLiveUserManagement","<target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea--phase0-copy-headers>","<target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserManagement/CNLiveUserManagement.framework/CNLiveUserManagement","<Linked Binary /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserManagement/CNLiveUserManagement.framework/CNLiveUserManagement>"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/lipo","-create","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/Objects-normal/armv7/Binary/CNLiveUserManagement","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/Objects-normal/arm64/Binary/CNLiveUserManagement","-output","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserManagement/CNLiveUserManagement.framework/CNLiveUserManagement"],"env":{},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","signature":"ba3e4799d6577c22d51c2d8bad3ab4e3"}
"target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea-:Debug:Ditto /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/module.modulemap /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserManagement/CNLiveUserManagement.framework/Modules/module.modulemap": {"tool":"file-copy","description":"Ditto /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/module.modulemap /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserManagement/CNLiveUserManagement.framework/Modules/module.modulemap","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/module.modulemap/","<target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea--HeadermapTaskProducer>","<target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserManagement/CNLiveUserManagement.framework/Modules/module.modulemap"]}
"target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea-:Debug:Ld /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/Objects-normal/arm64/Binary/CNLiveUserManagement normal arm64": {"tool":"shell","description":"Ld /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/Objects-normal/arm64/Binary/CNLiveUserManagement normal arm64","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/Objects-normal/arm64/CNLiveUserManagement-dummy.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/Objects-normal/arm64/CNUserInfoManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/Objects-normal/arm64/CNUserInfoModel.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/Objects-normal/arm64/CNLiveUserManagement_vers.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/Objects-normal/arm64/CNLiveUserManagement.LinkFileList","<target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea--phase0-copy-headers>","<target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/Objects-normal/arm64/Binary/CNLiveUserManagement"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-target","arm64-apple-ios9.0","-dynamiclib","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-L/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserManagement","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserManagement","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveTripartiteManagement","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-filelist","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/Objects-normal/arm64/CNLiveUserManagement.LinkFileList","-install_name","@rpath/CNLiveUserManagement.framework/CNLiveUserManagement","-Xlinker","-rpath","-Xlinker","@executable_path/Frameworks","-Xlinker","-rpath","-Xlinker","@loader_path/Frameworks","-dead_strip","-Xlinker","-object_path_lto","-Xlinker","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/Objects-normal/arm64/CNLiveUserManagement_lto.o","-Xlinker","-export_dynamic","-Xlinker","-no_deduplicate","-fembed-bitcode-marker","-fobjc-arc","-fobjc-link-runtime","-framework","Foundation","-framework","UIKit","-framework","CNLiveTripartiteManagement","-framework","Foundation","-framework","UIKit","-compatibility_version","1","-current_version","1","-Xlinker","-dependency_info","-Xlinker","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/Objects-normal/arm64/CNLiveUserManagement_dependency_info.dat","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/Objects-normal/arm64/Binary/CNLiveUserManagement"],"env":{},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/Objects-normal/arm64/CNLiveUserManagement_dependency_info.dat"],"deps-style":"dependency-info","signature":"19889c8da1c28a1df4193326faa6112d"}
"target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea-:Debug:Ld /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/Objects-normal/armv7/Binary/CNLiveUserManagement normal armv7": {"tool":"shell","description":"Ld /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/Objects-normal/armv7/Binary/CNLiveUserManagement normal armv7","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/Objects-normal/armv7/CNLiveUserManagement-dummy.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/Objects-normal/armv7/CNUserInfoManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/Objects-normal/armv7/CNUserInfoModel.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/Objects-normal/armv7/CNLiveUserManagement_vers.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/Objects-normal/armv7/CNLiveUserManagement.LinkFileList","<target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea--phase0-copy-headers>","<target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/Objects-normal/armv7/Binary/CNLiveUserManagement"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-target","armv7-apple-ios9.0","-dynamiclib","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-L/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserManagement","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserManagement","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveTripartiteManagement","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-filelist","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/Objects-normal/armv7/CNLiveUserManagement.LinkFileList","-install_name","@rpath/CNLiveUserManagement.framework/CNLiveUserManagement","-Xlinker","-rpath","-Xlinker","@executable_path/Frameworks","-Xlinker","-rpath","-Xlinker","@loader_path/Frameworks","-dead_strip","-Xlinker","-object_path_lto","-Xlinker","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/Objects-normal/armv7/CNLiveUserManagement_lto.o","-Xlinker","-export_dynamic","-Xlinker","-no_deduplicate","-fembed-bitcode-marker","-fobjc-arc","-fobjc-link-runtime","-framework","Foundation","-framework","UIKit","-framework","CNLiveTripartiteManagement","-framework","Foundation","-framework","UIKit","-compatibility_version","1","-current_version","1","-Xlinker","-dependency_info","-Xlinker","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/Objects-normal/armv7/CNLiveUserManagement_dependency_info.dat","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/Objects-normal/armv7/Binary/CNLiveUserManagement"],"env":{},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/Objects-normal/armv7/CNLiveUserManagement_dependency_info.dat"],"deps-style":"dependency-info","signature":"2ef83655ff66b2aefb02d35282aabf52"}
"target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea-:Debug:MkDir /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserManagement/CNLiveUserManagement.framework": {"tool":"mkdir","description":"MkDir /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserManagement/CNLiveUserManagement.framework","inputs":["<target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea--start>","<target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserManagement/CNLiveUserManagement.framework","<MkDir /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserManagement/CNLiveUserManagement.framework>"]}
"target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea-:Debug:MkDir /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserManagement/CNLiveUserManagement.framework/Headers": {"tool":"mkdir","description":"MkDir /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserManagement/CNLiveUserManagement.framework/Headers","inputs":["<target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea--start>","<target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserManagement/CNLiveUserManagement.framework/Headers","<MkDir /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserManagement/CNLiveUserManagement.framework/Headers>"]}
"target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea-:Debug:ProcessInfoPlistFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserManagement/CNLiveUserManagement.framework/Info.plist /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveUserManagement/CNLiveUserManagement-Info.plist": {"tool":"info-plist-processor","description":"ProcessInfoPlistFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserManagement/CNLiveUserManagement.framework/Info.plist /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveUserManagement/CNLiveUserManagement-Info.plist","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/CNLiveUserManagement/CNLiveUserManagement-Info.plist","<target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea--HeadermapTaskProducer>","<target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserManagement/CNLiveUserManagement.framework/Info.plist"]}
"target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea-:Debug:Touch /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserManagement/CNLiveUserManagement.framework": {"tool":"shell","description":"Touch /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserManagement/CNLiveUserManagement.framework","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserManagement/CNLiveUserManagement.framework","<target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea--Barrier-RegisterExecutionPolicyException>","<target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea--entry>"],"outputs":["<Touch /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserManagement/CNLiveUserManagement.framework>"],"args":["/usr/bin/touch","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserManagement/CNLiveUserManagement.framework"],"env":{},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","signature":"22003ba51f7e0c4800bf011e85bf1676"}
"target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/CNLiveUserManagement-all-non-framework-target-headers.hmap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/CNLiveUserManagement-all-non-framework-target-headers.hmap","inputs":["<target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea--GeneratedFilesTaskProducer>","<target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/CNLiveUserManagement-all-non-framework-target-headers.hmap"]}
"target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/CNLiveUserManagement-all-target-headers.hmap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/CNLiveUserManagement-all-target-headers.hmap","inputs":["<target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea--GeneratedFilesTaskProducer>","<target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/CNLiveUserManagement-all-target-headers.hmap"]}
"target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/CNLiveUserManagement-generated-files.hmap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/CNLiveUserManagement-generated-files.hmap","inputs":["<target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea--GeneratedFilesTaskProducer>","<target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/CNLiveUserManagement-generated-files.hmap"]}
"target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/CNLiveUserManagement-own-target-headers.hmap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/CNLiveUserManagement-own-target-headers.hmap","inputs":["<target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea--GeneratedFilesTaskProducer>","<target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/CNLiveUserManagement-own-target-headers.hmap"]}
"target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/CNLiveUserManagement-project-headers.hmap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/CNLiveUserManagement-project-headers.hmap","inputs":["<target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea--GeneratedFilesTaskProducer>","<target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/CNLiveUserManagement-project-headers.hmap"]}
"target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/CNLiveUserManagement.hmap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/CNLiveUserManagement.hmap","inputs":["<target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea--GeneratedFilesTaskProducer>","<target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/CNLiveUserManagement.hmap"]}
"target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/DerivedSources/CNLiveUserManagement_vers.c": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/DerivedSources/CNLiveUserManagement_vers.c","inputs":["<target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea--phase0-copy-headers>","<target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/DerivedSources/CNLiveUserManagement_vers.c"]}
"target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/Objects-normal/arm64/CNLiveUserManagement.LinkFileList": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/Objects-normal/arm64/CNLiveUserManagement.LinkFileList","inputs":["<target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea--phase0-copy-headers>","<target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/Objects-normal/arm64/CNLiveUserManagement.LinkFileList"]}
"target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/Objects-normal/armv7/CNLiveUserManagement.LinkFileList": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/Objects-normal/armv7/CNLiveUserManagement.LinkFileList","inputs":["<target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea--phase0-copy-headers>","<target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/Objects-normal/armv7/CNLiveUserManagement.LinkFileList"]}
"target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/all-product-headers.yaml": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/all-product-headers.yaml","inputs":["<target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea--GeneratedFilesTaskProducer>","<target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/all-product-headers.yaml"]}
"target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/module.modulemap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/module.modulemap","inputs":["<target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea--HeadermapTaskProducer>","<target-CNLiveUserManagement-285b96a559574e49fe0e1a40c03a5a8ea995021016985d913735bde112d65bea--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/CNLiveUserManagement.build/module.modulemap"]}
"target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/arm64/MJExtension-dummy.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/MJExtension/MJExtension-dummy.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/arm64/MJExtension-dummy.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/MJExtension/MJExtension-dummy.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/MJExtension/MJExtension-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/MJExtension/MJExtension-dummy.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/module.modulemap","<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--generated-headers>","<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--phase0-copy-headers>","<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/arm64/MJExtension-dummy.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=MJExtension","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/MJExtension-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/MJExtension-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/MJExtension-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/MJExtension-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/MJExtension/MJExtension-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/arm64/MJExtension-dummy.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/arm64/MJExtension-dummy.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/MJExtension/MJExtension-dummy.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/arm64/MJExtension-dummy.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/arm64/MJExtension-dummy.d"],"deps-style":"makefile","signature":"95bf3176b7c07d27dd71ee48fef921d6"}
"target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/arm64/MJExtensionConst.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJExtension/MJExtension/MJExtensionConst.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/arm64/MJExtensionConst.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJExtension/MJExtension/MJExtensionConst.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/MJExtension/MJExtension-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJExtension/MJExtension/MJExtensionConst.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/module.modulemap","<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--generated-headers>","<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--phase0-copy-headers>","<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/arm64/MJExtensionConst.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=MJExtension","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/MJExtension-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/MJExtension-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/MJExtension-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/MJExtension-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/MJExtension/MJExtension-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/arm64/MJExtensionConst.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/arm64/MJExtensionConst.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJExtension/MJExtension/MJExtensionConst.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/arm64/MJExtensionConst.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/arm64/MJExtensionConst.d"],"deps-style":"makefile","signature":"50ce4d9c39509a810421db21ac6bfaed"}
"target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/arm64/MJExtension_vers.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/DerivedSources/MJExtension_vers.c normal arm64 c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/arm64/MJExtension_vers.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/DerivedSources/MJExtension_vers.c normal arm64 c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/DerivedSources/MJExtension_vers.c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/module.modulemap","<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--generated-headers>","<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--phase0-copy-headers>","<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/arm64/MJExtension_vers.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c","-target","arm64-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=MJExtension","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Werror=deprecated-objc-isa-usage","-Werror=objc-root-class","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/MJExtension-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/MJExtension-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/MJExtension-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/MJExtension-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/arm64/MJExtension_vers.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/arm64/MJExtension_vers.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/DerivedSources/MJExtension_vers.c","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/arm64/MJExtension_vers.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/arm64/MJExtension_vers.d"],"deps-style":"makefile","signature":"fae2521d66f103880bd60521d67094d3"}
"target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/arm64/MJFoundation.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJExtension/MJExtension/MJFoundation.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/arm64/MJFoundation.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJExtension/MJExtension/MJFoundation.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/MJExtension/MJExtension-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJExtension/MJExtension/MJFoundation.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/module.modulemap","<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--generated-headers>","<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--phase0-copy-headers>","<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/arm64/MJFoundation.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=MJExtension","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/MJExtension-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/MJExtension-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/MJExtension-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/MJExtension-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/MJExtension/MJExtension-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/arm64/MJFoundation.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/arm64/MJFoundation.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJExtension/MJExtension/MJFoundation.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/arm64/MJFoundation.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/arm64/MJFoundation.d"],"deps-style":"makefile","signature":"d27d257e740e6e8fa26b79b5f8e7d68d"}
"target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/arm64/MJProperty.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJExtension/MJExtension/MJProperty.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/arm64/MJProperty.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJExtension/MJExtension/MJProperty.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/MJExtension/MJExtension-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJExtension/MJExtension/MJProperty.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/module.modulemap","<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--generated-headers>","<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--phase0-copy-headers>","<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/arm64/MJProperty.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=MJExtension","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/MJExtension-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/MJExtension-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/MJExtension-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/MJExtension-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/MJExtension/MJExtension-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/arm64/MJProperty.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/arm64/MJProperty.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJExtension/MJExtension/MJProperty.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/arm64/MJProperty.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/arm64/MJProperty.d"],"deps-style":"makefile","signature":"d9e603ac4de2b712ee57f335e5e5e1d3"}
"target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/arm64/MJPropertyKey.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJExtension/MJExtension/MJPropertyKey.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/arm64/MJPropertyKey.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJExtension/MJExtension/MJPropertyKey.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/MJExtension/MJExtension-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJExtension/MJExtension/MJPropertyKey.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/module.modulemap","<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--generated-headers>","<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--phase0-copy-headers>","<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/arm64/MJPropertyKey.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=MJExtension","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/MJExtension-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/MJExtension-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/MJExtension-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/MJExtension-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/MJExtension/MJExtension-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/arm64/MJPropertyKey.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/arm64/MJPropertyKey.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJExtension/MJExtension/MJPropertyKey.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/arm64/MJPropertyKey.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/arm64/MJPropertyKey.d"],"deps-style":"makefile","signature":"a5c0bcb690c43155330608f528e9ad7a"}
"target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/arm64/MJPropertyType.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJExtension/MJExtension/MJPropertyType.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/arm64/MJPropertyType.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJExtension/MJExtension/MJPropertyType.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/MJExtension/MJExtension-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJExtension/MJExtension/MJPropertyType.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/module.modulemap","<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--generated-headers>","<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--phase0-copy-headers>","<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/arm64/MJPropertyType.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=MJExtension","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/MJExtension-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/MJExtension-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/MJExtension-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/MJExtension-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/MJExtension/MJExtension-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/arm64/MJPropertyType.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/arm64/MJPropertyType.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJExtension/MJExtension/MJPropertyType.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/arm64/MJPropertyType.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/arm64/MJPropertyType.d"],"deps-style":"makefile","signature":"8b7c41737fd00b63256162aaf406b1f2"}
"target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/arm64/NSObject+MJClass.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJExtension/MJExtension/NSObject+MJClass.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/arm64/NSObject+MJClass.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJExtension/MJExtension/NSObject+MJClass.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/MJExtension/MJExtension-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJExtension/MJExtension/NSObject+MJClass.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/module.modulemap","<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--generated-headers>","<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--phase0-copy-headers>","<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/arm64/NSObject+MJClass.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=MJExtension","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/MJExtension-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/MJExtension-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/MJExtension-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/MJExtension-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/MJExtension/MJExtension-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/arm64/NSObject+MJClass.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/arm64/NSObject+MJClass.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJExtension/MJExtension/NSObject+MJClass.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/arm64/NSObject+MJClass.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/arm64/NSObject+MJClass.d"],"deps-style":"makefile","signature":"bfb849e4b5e4e20e9d21d2147c5f1d8a"}
"target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/arm64/NSObject+MJCoding.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJExtension/MJExtension/NSObject+MJCoding.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/arm64/NSObject+MJCoding.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJExtension/MJExtension/NSObject+MJCoding.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/MJExtension/MJExtension-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJExtension/MJExtension/NSObject+MJCoding.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/module.modulemap","<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--generated-headers>","<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--phase0-copy-headers>","<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/arm64/NSObject+MJCoding.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=MJExtension","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/MJExtension-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/MJExtension-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/MJExtension-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/MJExtension-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/MJExtension/MJExtension-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/arm64/NSObject+MJCoding.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/arm64/NSObject+MJCoding.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJExtension/MJExtension/NSObject+MJCoding.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/arm64/NSObject+MJCoding.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/arm64/NSObject+MJCoding.d"],"deps-style":"makefile","signature":"d1af9043fd61725fea6a949e6f601028"}
"target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/arm64/NSObject+MJKeyValue.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJExtension/MJExtension/NSObject+MJKeyValue.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/arm64/NSObject+MJKeyValue.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJExtension/MJExtension/NSObject+MJKeyValue.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/MJExtension/MJExtension-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJExtension/MJExtension/NSObject+MJKeyValue.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/module.modulemap","<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--generated-headers>","<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--phase0-copy-headers>","<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/arm64/NSObject+MJKeyValue.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=MJExtension","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/MJExtension-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/MJExtension-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/MJExtension-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/MJExtension-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/MJExtension/MJExtension-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/arm64/NSObject+MJKeyValue.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/arm64/NSObject+MJKeyValue.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJExtension/MJExtension/NSObject+MJKeyValue.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/arm64/NSObject+MJKeyValue.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/arm64/NSObject+MJKeyValue.d"],"deps-style":"makefile","signature":"cc999f7301c13a9f288ce4e57f6c21d6"}
"target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/arm64/NSObject+MJProperty.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJExtension/MJExtension/NSObject+MJProperty.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/arm64/NSObject+MJProperty.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJExtension/MJExtension/NSObject+MJProperty.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/MJExtension/MJExtension-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJExtension/MJExtension/NSObject+MJProperty.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/module.modulemap","<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--generated-headers>","<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--phase0-copy-headers>","<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/arm64/NSObject+MJProperty.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=MJExtension","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/MJExtension-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/MJExtension-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/MJExtension-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/MJExtension-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/MJExtension/MJExtension-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/arm64/NSObject+MJProperty.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/arm64/NSObject+MJProperty.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJExtension/MJExtension/NSObject+MJProperty.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/arm64/NSObject+MJProperty.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/arm64/NSObject+MJProperty.d"],"deps-style":"makefile","signature":"2ab8046972d479231032e1dc61251011"}
"target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/arm64/NSString+MJExtension.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJExtension/MJExtension/NSString+MJExtension.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/arm64/NSString+MJExtension.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJExtension/MJExtension/NSString+MJExtension.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/MJExtension/MJExtension-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJExtension/MJExtension/NSString+MJExtension.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/module.modulemap","<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--generated-headers>","<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--phase0-copy-headers>","<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/arm64/NSString+MJExtension.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=MJExtension","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/MJExtension-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/MJExtension-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/MJExtension-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/MJExtension-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/MJExtension/MJExtension-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/arm64/NSString+MJExtension.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/arm64/NSString+MJExtension.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJExtension/MJExtension/NSString+MJExtension.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/arm64/NSString+MJExtension.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/arm64/NSString+MJExtension.d"],"deps-style":"makefile","signature":"5103ddc054f86cec85d798a50eb48696"}
"target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/armv7/MJExtension-dummy.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/MJExtension/MJExtension-dummy.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/armv7/MJExtension-dummy.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/MJExtension/MJExtension-dummy.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/MJExtension/MJExtension-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/MJExtension/MJExtension-dummy.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/module.modulemap","<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--generated-headers>","<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--phase0-copy-headers>","<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/armv7/MJExtension-dummy.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=MJExtension","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/MJExtension-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/MJExtension-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/MJExtension-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/MJExtension-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/MJExtension/MJExtension-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/armv7/MJExtension-dummy.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/armv7/MJExtension-dummy.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/MJExtension/MJExtension-dummy.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/armv7/MJExtension-dummy.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/armv7/MJExtension-dummy.d"],"deps-style":"makefile","signature":"3bb60bde09dcdf8c44913ac4cb3c0474"}
"target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/armv7/MJExtensionConst.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJExtension/MJExtension/MJExtensionConst.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/armv7/MJExtensionConst.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJExtension/MJExtension/MJExtensionConst.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/MJExtension/MJExtension-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJExtension/MJExtension/MJExtensionConst.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/module.modulemap","<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--generated-headers>","<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--phase0-copy-headers>","<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/armv7/MJExtensionConst.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=MJExtension","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/MJExtension-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/MJExtension-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/MJExtension-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/MJExtension-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/MJExtension/MJExtension-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/armv7/MJExtensionConst.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/armv7/MJExtensionConst.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJExtension/MJExtension/MJExtensionConst.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/armv7/MJExtensionConst.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/armv7/MJExtensionConst.d"],"deps-style":"makefile","signature":"af9fc2762047372c81b5c466b9299d87"}
"target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/armv7/MJExtension_vers.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/DerivedSources/MJExtension_vers.c normal armv7 c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/armv7/MJExtension_vers.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/DerivedSources/MJExtension_vers.c normal armv7 c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/DerivedSources/MJExtension_vers.c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/module.modulemap","<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--generated-headers>","<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--phase0-copy-headers>","<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/armv7/MJExtension_vers.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c","-target","armv7-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=MJExtension","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Werror=deprecated-objc-isa-usage","-Werror=objc-root-class","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/MJExtension-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/MJExtension-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/MJExtension-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/MJExtension-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/armv7/MJExtension_vers.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/armv7/MJExtension_vers.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/DerivedSources/MJExtension_vers.c","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/armv7/MJExtension_vers.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/armv7/MJExtension_vers.d"],"deps-style":"makefile","signature":"16faf0f38045fa904d3c06c5e0284cb1"}
"target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/armv7/MJFoundation.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJExtension/MJExtension/MJFoundation.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/armv7/MJFoundation.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJExtension/MJExtension/MJFoundation.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/MJExtension/MJExtension-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJExtension/MJExtension/MJFoundation.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/module.modulemap","<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--generated-headers>","<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--phase0-copy-headers>","<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/armv7/MJFoundation.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=MJExtension","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/MJExtension-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/MJExtension-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/MJExtension-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/MJExtension-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/MJExtension/MJExtension-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/armv7/MJFoundation.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/armv7/MJFoundation.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJExtension/MJExtension/MJFoundation.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/armv7/MJFoundation.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/armv7/MJFoundation.d"],"deps-style":"makefile","signature":"b0f7d131b1fe75e62b773c1f2e3ca6ed"}
"target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/armv7/MJProperty.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJExtension/MJExtension/MJProperty.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/armv7/MJProperty.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJExtension/MJExtension/MJProperty.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/MJExtension/MJExtension-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJExtension/MJExtension/MJProperty.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/module.modulemap","<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--generated-headers>","<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--phase0-copy-headers>","<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/armv7/MJProperty.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=MJExtension","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/MJExtension-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/MJExtension-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/MJExtension-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/MJExtension-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/MJExtension/MJExtension-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/armv7/MJProperty.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/armv7/MJProperty.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJExtension/MJExtension/MJProperty.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/armv7/MJProperty.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/armv7/MJProperty.d"],"deps-style":"makefile","signature":"c9774fc1acdfa328353f6b6467ce2f99"}
"target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/armv7/MJPropertyKey.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJExtension/MJExtension/MJPropertyKey.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/armv7/MJPropertyKey.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJExtension/MJExtension/MJPropertyKey.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/MJExtension/MJExtension-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJExtension/MJExtension/MJPropertyKey.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/module.modulemap","<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--generated-headers>","<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--phase0-copy-headers>","<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/armv7/MJPropertyKey.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=MJExtension","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/MJExtension-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/MJExtension-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/MJExtension-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/MJExtension-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/MJExtension/MJExtension-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/armv7/MJPropertyKey.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/armv7/MJPropertyKey.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJExtension/MJExtension/MJPropertyKey.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/armv7/MJPropertyKey.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/armv7/MJPropertyKey.d"],"deps-style":"makefile","signature":"2403895de23d2ed2ad882c5d5d77f2db"}
"target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/armv7/MJPropertyType.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJExtension/MJExtension/MJPropertyType.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/armv7/MJPropertyType.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJExtension/MJExtension/MJPropertyType.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/MJExtension/MJExtension-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJExtension/MJExtension/MJPropertyType.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/module.modulemap","<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--generated-headers>","<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--phase0-copy-headers>","<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/armv7/MJPropertyType.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=MJExtension","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/MJExtension-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/MJExtension-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/MJExtension-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/MJExtension-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/MJExtension/MJExtension-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/armv7/MJPropertyType.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/armv7/MJPropertyType.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJExtension/MJExtension/MJPropertyType.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/armv7/MJPropertyType.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/armv7/MJPropertyType.d"],"deps-style":"makefile","signature":"dcc1aa4b01bc9916b5e65093fd68d929"}
"target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/armv7/NSObject+MJClass.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJExtension/MJExtension/NSObject+MJClass.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/armv7/NSObject+MJClass.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJExtension/MJExtension/NSObject+MJClass.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/MJExtension/MJExtension-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJExtension/MJExtension/NSObject+MJClass.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/module.modulemap","<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--generated-headers>","<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--phase0-copy-headers>","<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/armv7/NSObject+MJClass.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=MJExtension","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/MJExtension-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/MJExtension-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/MJExtension-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/MJExtension-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/MJExtension/MJExtension-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/armv7/NSObject+MJClass.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/armv7/NSObject+MJClass.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJExtension/MJExtension/NSObject+MJClass.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/armv7/NSObject+MJClass.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/armv7/NSObject+MJClass.d"],"deps-style":"makefile","signature":"3566d4356200aced7deb40fa2ead9f0c"}
"target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/armv7/NSObject+MJCoding.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJExtension/MJExtension/NSObject+MJCoding.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/armv7/NSObject+MJCoding.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJExtension/MJExtension/NSObject+MJCoding.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/MJExtension/MJExtension-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJExtension/MJExtension/NSObject+MJCoding.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/module.modulemap","<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--generated-headers>","<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--phase0-copy-headers>","<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/armv7/NSObject+MJCoding.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=MJExtension","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/MJExtension-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/MJExtension-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/MJExtension-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/MJExtension-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/MJExtension/MJExtension-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/armv7/NSObject+MJCoding.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/armv7/NSObject+MJCoding.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJExtension/MJExtension/NSObject+MJCoding.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/armv7/NSObject+MJCoding.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/armv7/NSObject+MJCoding.d"],"deps-style":"makefile","signature":"a33cbd87e22737325bbb81b64a580dbc"}
"target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/armv7/NSObject+MJKeyValue.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJExtension/MJExtension/NSObject+MJKeyValue.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/armv7/NSObject+MJKeyValue.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJExtension/MJExtension/NSObject+MJKeyValue.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/MJExtension/MJExtension-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJExtension/MJExtension/NSObject+MJKeyValue.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/module.modulemap","<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--generated-headers>","<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--phase0-copy-headers>","<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/armv7/NSObject+MJKeyValue.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=MJExtension","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/MJExtension-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/MJExtension-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/MJExtension-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/MJExtension-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/MJExtension/MJExtension-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/armv7/NSObject+MJKeyValue.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/armv7/NSObject+MJKeyValue.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJExtension/MJExtension/NSObject+MJKeyValue.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/armv7/NSObject+MJKeyValue.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/armv7/NSObject+MJKeyValue.d"],"deps-style":"makefile","signature":"b1af9ac061562d252e71177fc2e5c4b7"}
"target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/armv7/NSObject+MJProperty.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJExtension/MJExtension/NSObject+MJProperty.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/armv7/NSObject+MJProperty.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJExtension/MJExtension/NSObject+MJProperty.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/MJExtension/MJExtension-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJExtension/MJExtension/NSObject+MJProperty.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/module.modulemap","<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--generated-headers>","<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--phase0-copy-headers>","<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/armv7/NSObject+MJProperty.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=MJExtension","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/MJExtension-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/MJExtension-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/MJExtension-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/MJExtension-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/MJExtension/MJExtension-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/armv7/NSObject+MJProperty.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/armv7/NSObject+MJProperty.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJExtension/MJExtension/NSObject+MJProperty.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/armv7/NSObject+MJProperty.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/armv7/NSObject+MJProperty.d"],"deps-style":"makefile","signature":"a78a065738436e2ebe5b981e02dc1a04"}
"target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/armv7/NSString+MJExtension.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJExtension/MJExtension/NSString+MJExtension.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/armv7/NSString+MJExtension.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJExtension/MJExtension/NSString+MJExtension.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/MJExtension/MJExtension-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJExtension/MJExtension/NSString+MJExtension.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/module.modulemap","<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--generated-headers>","<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--phase0-copy-headers>","<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/armv7/NSString+MJExtension.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=MJExtension","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/MJExtension-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/MJExtension-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/MJExtension-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/MJExtension-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/MJExtension/MJExtension-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/armv7/NSString+MJExtension.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/armv7/NSString+MJExtension.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJExtension/MJExtension/NSString+MJExtension.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/armv7/NSString+MJExtension.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/armv7/NSString+MJExtension.d"],"deps-style":"makefile","signature":"4b2126ebca346460c2687197b9e23336"}
"target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJExtension/MJExtension/MJExtension.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension/MJExtension.framework/Headers/MJExtension.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJExtension/MJExtension/MJExtension.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension/MJExtension.framework/Headers/MJExtension.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJExtension/MJExtension/MJExtension.h/","<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--HeadermapTaskProducer>","<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension/MJExtension.framework/Headers/MJExtension.h"]}
"target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJExtension/MJExtension/MJExtensionConst.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension/MJExtension.framework/Headers/MJExtensionConst.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJExtension/MJExtension/MJExtensionConst.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension/MJExtension.framework/Headers/MJExtensionConst.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJExtension/MJExtension/MJExtensionConst.h/","<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--HeadermapTaskProducer>","<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension/MJExtension.framework/Headers/MJExtensionConst.h"]}
"target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJExtension/MJExtension/MJFoundation.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension/MJExtension.framework/Headers/MJFoundation.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJExtension/MJExtension/MJFoundation.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension/MJExtension.framework/Headers/MJFoundation.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJExtension/MJExtension/MJFoundation.h/","<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--HeadermapTaskProducer>","<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension/MJExtension.framework/Headers/MJFoundation.h"]}
"target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJExtension/MJExtension/MJProperty.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension/MJExtension.framework/Headers/MJProperty.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJExtension/MJExtension/MJProperty.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension/MJExtension.framework/Headers/MJProperty.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJExtension/MJExtension/MJProperty.h/","<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--HeadermapTaskProducer>","<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension/MJExtension.framework/Headers/MJProperty.h"]}
"target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJExtension/MJExtension/MJPropertyKey.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension/MJExtension.framework/Headers/MJPropertyKey.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJExtension/MJExtension/MJPropertyKey.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension/MJExtension.framework/Headers/MJPropertyKey.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJExtension/MJExtension/MJPropertyKey.h/","<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--HeadermapTaskProducer>","<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension/MJExtension.framework/Headers/MJPropertyKey.h"]}
"target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJExtension/MJExtension/MJPropertyType.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension/MJExtension.framework/Headers/MJPropertyType.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJExtension/MJExtension/MJPropertyType.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension/MJExtension.framework/Headers/MJPropertyType.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJExtension/MJExtension/MJPropertyType.h/","<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--HeadermapTaskProducer>","<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension/MJExtension.framework/Headers/MJPropertyType.h"]}
"target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJExtension/MJExtension/NSObject+MJClass.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension/MJExtension.framework/Headers/NSObject+MJClass.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJExtension/MJExtension/NSObject+MJClass.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension/MJExtension.framework/Headers/NSObject+MJClass.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJExtension/MJExtension/NSObject+MJClass.h/","<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--HeadermapTaskProducer>","<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension/MJExtension.framework/Headers/NSObject+MJClass.h"]}
"target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJExtension/MJExtension/NSObject+MJCoding.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension/MJExtension.framework/Headers/NSObject+MJCoding.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJExtension/MJExtension/NSObject+MJCoding.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension/MJExtension.framework/Headers/NSObject+MJCoding.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJExtension/MJExtension/NSObject+MJCoding.h/","<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--HeadermapTaskProducer>","<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension/MJExtension.framework/Headers/NSObject+MJCoding.h"]}
"target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJExtension/MJExtension/NSObject+MJKeyValue.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension/MJExtension.framework/Headers/NSObject+MJKeyValue.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJExtension/MJExtension/NSObject+MJKeyValue.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension/MJExtension.framework/Headers/NSObject+MJKeyValue.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJExtension/MJExtension/NSObject+MJKeyValue.h/","<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--HeadermapTaskProducer>","<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension/MJExtension.framework/Headers/NSObject+MJKeyValue.h"]}
"target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJExtension/MJExtension/NSObject+MJProperty.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension/MJExtension.framework/Headers/NSObject+MJProperty.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJExtension/MJExtension/NSObject+MJProperty.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension/MJExtension.framework/Headers/NSObject+MJProperty.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJExtension/MJExtension/NSObject+MJProperty.h/","<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--HeadermapTaskProducer>","<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension/MJExtension.framework/Headers/NSObject+MJProperty.h"]}
"target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJExtension/MJExtension/NSString+MJExtension.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension/MJExtension.framework/Headers/NSString+MJExtension.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJExtension/MJExtension/NSString+MJExtension.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension/MJExtension.framework/Headers/NSString+MJExtension.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJExtension/MJExtension/NSString+MJExtension.h/","<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--HeadermapTaskProducer>","<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension/MJExtension.framework/Headers/NSString+MJExtension.h"]}
"target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/MJExtension/MJExtension-umbrella.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension/MJExtension.framework/Headers/MJExtension-umbrella.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/MJExtension/MJExtension-umbrella.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension/MJExtension.framework/Headers/MJExtension-umbrella.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/MJExtension/MJExtension-umbrella.h/","<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--HeadermapTaskProducer>","<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension/MJExtension.framework/Headers/MJExtension-umbrella.h"]}
"target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643-:Debug:CreateBuildDirectory /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build": {"tool":"create-build-directory","description":"CreateBuildDirectory /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build","inputs":[],"outputs":["<CreateBuildDirectory-/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build>","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build"]}
"target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643-:Debug:CreateUniversalBinary /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension/MJExtension.framework/MJExtension normal armv7 arm64": {"tool":"shell","description":"CreateUniversalBinary /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension/MJExtension.framework/MJExtension normal armv7 arm64","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/armv7/Binary/MJExtension","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/arm64/Binary/MJExtension","<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--phase0-copy-headers>","<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension/MJExtension.framework/MJExtension","<Linked Binary /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension/MJExtension.framework/MJExtension>"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/lipo","-create","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/armv7/Binary/MJExtension","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/arm64/Binary/MJExtension","-output","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension/MJExtension.framework/MJExtension"],"env":{},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","signature":"139a7181a047b2cd42fc7d4e401dd6bd"}
"target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643-:Debug:Ditto /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/module.modulemap /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension/MJExtension.framework/Modules/module.modulemap": {"tool":"file-copy","description":"Ditto /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/module.modulemap /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension/MJExtension.framework/Modules/module.modulemap","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/module.modulemap/","<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--HeadermapTaskProducer>","<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension/MJExtension.framework/Modules/module.modulemap"]}
"target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643-:Debug:Ld /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/arm64/Binary/MJExtension normal arm64": {"tool":"shell","description":"Ld /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/arm64/Binary/MJExtension normal arm64","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/arm64/MJExtension-dummy.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/arm64/MJExtensionConst.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/arm64/MJFoundation.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/arm64/MJProperty.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/arm64/MJPropertyKey.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/arm64/MJPropertyType.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/arm64/NSObject+MJClass.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/arm64/NSObject+MJCoding.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/arm64/NSObject+MJKeyValue.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/arm64/NSObject+MJProperty.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/arm64/NSString+MJExtension.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/arm64/MJExtension_vers.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/arm64/MJExtension.LinkFileList","<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--phase0-copy-headers>","<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/arm64/Binary/MJExtension"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-target","arm64-apple-ios8.0","-dynamiclib","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-L/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension","-filelist","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/arm64/MJExtension.LinkFileList","-install_name","@rpath/MJExtension.framework/MJExtension","-Xlinker","-rpath","-Xlinker","@executable_path/Frameworks","-Xlinker","-rpath","-Xlinker","@loader_path/Frameworks","-dead_strip","-Xlinker","-object_path_lto","-Xlinker","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/arm64/MJExtension_lto.o","-Xlinker","-export_dynamic","-Xlinker","-no_deduplicate","-fembed-bitcode-marker","-fobjc-arc","-fobjc-link-runtime","-framework","Foundation","-compatibility_version","1","-current_version","1","-Xlinker","-dependency_info","-Xlinker","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/arm64/MJExtension_dependency_info.dat","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/arm64/Binary/MJExtension"],"env":{},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/arm64/MJExtension_dependency_info.dat"],"deps-style":"dependency-info","signature":"5fbfd7005e2e940621cf11159b12887d"}
"target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643-:Debug:Ld /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/armv7/Binary/MJExtension normal armv7": {"tool":"shell","description":"Ld /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/armv7/Binary/MJExtension normal armv7","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/armv7/MJExtension-dummy.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/armv7/MJExtensionConst.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/armv7/MJFoundation.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/armv7/MJProperty.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/armv7/MJPropertyKey.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/armv7/MJPropertyType.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/armv7/NSObject+MJClass.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/armv7/NSObject+MJCoding.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/armv7/NSObject+MJKeyValue.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/armv7/NSObject+MJProperty.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/armv7/NSString+MJExtension.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/armv7/MJExtension_vers.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/armv7/MJExtension.LinkFileList","<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--phase0-copy-headers>","<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/armv7/Binary/MJExtension"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-target","armv7-apple-ios8.0","-dynamiclib","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-L/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension","-filelist","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/armv7/MJExtension.LinkFileList","-install_name","@rpath/MJExtension.framework/MJExtension","-Xlinker","-rpath","-Xlinker","@executable_path/Frameworks","-Xlinker","-rpath","-Xlinker","@loader_path/Frameworks","-dead_strip","-Xlinker","-object_path_lto","-Xlinker","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/armv7/MJExtension_lto.o","-Xlinker","-export_dynamic","-Xlinker","-no_deduplicate","-fembed-bitcode-marker","-fobjc-arc","-fobjc-link-runtime","-framework","Foundation","-compatibility_version","1","-current_version","1","-Xlinker","-dependency_info","-Xlinker","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/armv7/MJExtension_dependency_info.dat","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/armv7/Binary/MJExtension"],"env":{},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/armv7/MJExtension_dependency_info.dat"],"deps-style":"dependency-info","signature":"7e71920b4b3dc6e8fe57e6e971b7920f"}
"target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643-:Debug:MkDir /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension/MJExtension.framework": {"tool":"mkdir","description":"MkDir /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension/MJExtension.framework","inputs":["<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--start>","<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension/MJExtension.framework","<MkDir /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension/MJExtension.framework>"]}
"target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643-:Debug:MkDir /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension/MJExtension.framework/Headers": {"tool":"mkdir","description":"MkDir /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension/MJExtension.framework/Headers","inputs":["<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--start>","<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension/MJExtension.framework/Headers","<MkDir /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension/MJExtension.framework/Headers>"]}
"target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643-:Debug:ProcessInfoPlistFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension/MJExtension.framework/Info.plist /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/MJExtension/MJExtension-Info.plist": {"tool":"info-plist-processor","description":"ProcessInfoPlistFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension/MJExtension.framework/Info.plist /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/MJExtension/MJExtension-Info.plist","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/MJExtension/MJExtension-Info.plist","<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--HeadermapTaskProducer>","<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension/MJExtension.framework/Info.plist"]}
"target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643-:Debug:Touch /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension/MJExtension.framework": {"tool":"shell","description":"Touch /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension/MJExtension.framework","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension/MJExtension.framework","<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--Barrier-RegisterExecutionPolicyException>","<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--entry>"],"outputs":["<Touch /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension/MJExtension.framework>"],"args":["/usr/bin/touch","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension/MJExtension.framework"],"env":{},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","signature":"e002b215c832863c8e340e5a588e2671"}
"target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/DerivedSources/MJExtension_vers.c": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/DerivedSources/MJExtension_vers.c","inputs":["<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--phase0-copy-headers>","<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/DerivedSources/MJExtension_vers.c"]}
"target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/MJExtension-all-non-framework-target-headers.hmap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/MJExtension-all-non-framework-target-headers.hmap","inputs":["<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--GeneratedFilesTaskProducer>","<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/MJExtension-all-non-framework-target-headers.hmap"]}
"target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/MJExtension-all-target-headers.hmap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/MJExtension-all-target-headers.hmap","inputs":["<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--GeneratedFilesTaskProducer>","<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/MJExtension-all-target-headers.hmap"]}
"target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/MJExtension-generated-files.hmap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/MJExtension-generated-files.hmap","inputs":["<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--GeneratedFilesTaskProducer>","<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/MJExtension-generated-files.hmap"]}
"target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/MJExtension-own-target-headers.hmap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/MJExtension-own-target-headers.hmap","inputs":["<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--GeneratedFilesTaskProducer>","<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/MJExtension-own-target-headers.hmap"]}
"target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/MJExtension-project-headers.hmap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/MJExtension-project-headers.hmap","inputs":["<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--GeneratedFilesTaskProducer>","<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/MJExtension-project-headers.hmap"]}
"target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/MJExtension.hmap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/MJExtension.hmap","inputs":["<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--GeneratedFilesTaskProducer>","<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/MJExtension.hmap"]}
"target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/arm64/MJExtension.LinkFileList": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/arm64/MJExtension.LinkFileList","inputs":["<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--phase0-copy-headers>","<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/arm64/MJExtension.LinkFileList"]}
"target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/armv7/MJExtension.LinkFileList": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/armv7/MJExtension.LinkFileList","inputs":["<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--phase0-copy-headers>","<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/Objects-normal/armv7/MJExtension.LinkFileList"]}
"target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/all-product-headers.yaml": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/all-product-headers.yaml","inputs":["<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--GeneratedFilesTaskProducer>","<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/all-product-headers.yaml"]}
"target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/module.modulemap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/module.modulemap","inputs":["<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--HeadermapTaskProducer>","<target-MJExtension-285b96a559574e49fe0e1a40c03a5a8efb9b69652dcc61b73b668789cc187643--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJExtension.build/module.modulemap"]}
"target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/MJRefresh-dummy.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/MJRefresh/MJRefresh-dummy.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/MJRefresh-dummy.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/MJRefresh/MJRefresh-dummy.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/MJRefresh/MJRefresh-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/MJRefresh/MJRefresh-dummy.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/module.modulemap","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--generated-headers>","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--phase0-copy-headers>","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/MJRefresh-dummy.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=MJRefresh","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/MJRefresh-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/MJRefresh-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/MJRefresh-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/MJRefresh-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/MJRefresh/MJRefresh-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/MJRefresh-dummy.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/MJRefresh-dummy.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/MJRefresh/MJRefresh-dummy.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/MJRefresh-dummy.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/MJRefresh-dummy.d"],"deps-style":"makefile","signature":"ecca7da243f6ee2c9737b97a14c315d6"}
"target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/MJRefreshAutoFooter.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJRefresh/MJRefresh/Base/MJRefreshAutoFooter.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/MJRefreshAutoFooter.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJRefresh/MJRefresh/Base/MJRefreshAutoFooter.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/MJRefresh/MJRefresh-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJRefresh/MJRefresh/Base/MJRefreshAutoFooter.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/module.modulemap","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--generated-headers>","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--phase0-copy-headers>","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/MJRefreshAutoFooter.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=MJRefresh","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/MJRefresh-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/MJRefresh-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/MJRefresh-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/MJRefresh-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/MJRefresh/MJRefresh-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/MJRefreshAutoFooter.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/MJRefreshAutoFooter.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJRefresh/MJRefresh/Base/MJRefreshAutoFooter.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/MJRefreshAutoFooter.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/MJRefreshAutoFooter.d"],"deps-style":"makefile","signature":"59c3599b1382defe0d42e105c82e6d7d"}
"target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/MJRefreshAutoGifFooter.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJRefresh/MJRefresh/Custom/Footer/Auto/MJRefreshAutoGifFooter.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/MJRefreshAutoGifFooter.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJRefresh/MJRefresh/Custom/Footer/Auto/MJRefreshAutoGifFooter.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/MJRefresh/MJRefresh-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJRefresh/MJRefresh/Custom/Footer/Auto/MJRefreshAutoGifFooter.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/module.modulemap","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--generated-headers>","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--phase0-copy-headers>","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/MJRefreshAutoGifFooter.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=MJRefresh","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/MJRefresh-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/MJRefresh-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/MJRefresh-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/MJRefresh-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/MJRefresh/MJRefresh-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/MJRefreshAutoGifFooter.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/MJRefreshAutoGifFooter.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJRefresh/MJRefresh/Custom/Footer/Auto/MJRefreshAutoGifFooter.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/MJRefreshAutoGifFooter.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/MJRefreshAutoGifFooter.d"],"deps-style":"makefile","signature":"b49fbad635ac4ae1df53b6e43e46aacc"}
"target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/MJRefreshAutoNormalFooter.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJRefresh/MJRefresh/Custom/Footer/Auto/MJRefreshAutoNormalFooter.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/MJRefreshAutoNormalFooter.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJRefresh/MJRefresh/Custom/Footer/Auto/MJRefreshAutoNormalFooter.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/MJRefresh/MJRefresh-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJRefresh/MJRefresh/Custom/Footer/Auto/MJRefreshAutoNormalFooter.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/module.modulemap","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--generated-headers>","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--phase0-copy-headers>","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/MJRefreshAutoNormalFooter.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=MJRefresh","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/MJRefresh-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/MJRefresh-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/MJRefresh-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/MJRefresh-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/MJRefresh/MJRefresh-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/MJRefreshAutoNormalFooter.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/MJRefreshAutoNormalFooter.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJRefresh/MJRefresh/Custom/Footer/Auto/MJRefreshAutoNormalFooter.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/MJRefreshAutoNormalFooter.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/MJRefreshAutoNormalFooter.d"],"deps-style":"makefile","signature":"10da963ca4592f860652a3e5e8b45db6"}
"target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/MJRefreshAutoStateFooter.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJRefresh/MJRefresh/Custom/Footer/Auto/MJRefreshAutoStateFooter.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/MJRefreshAutoStateFooter.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJRefresh/MJRefresh/Custom/Footer/Auto/MJRefreshAutoStateFooter.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/MJRefresh/MJRefresh-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJRefresh/MJRefresh/Custom/Footer/Auto/MJRefreshAutoStateFooter.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/module.modulemap","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--generated-headers>","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--phase0-copy-headers>","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/MJRefreshAutoStateFooter.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=MJRefresh","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/MJRefresh-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/MJRefresh-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/MJRefresh-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/MJRefresh-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/MJRefresh/MJRefresh-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/MJRefreshAutoStateFooter.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/MJRefreshAutoStateFooter.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJRefresh/MJRefresh/Custom/Footer/Auto/MJRefreshAutoStateFooter.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/MJRefreshAutoStateFooter.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/MJRefreshAutoStateFooter.d"],"deps-style":"makefile","signature":"c47a478dbd30c5f78495d07d6ab7c61f"}
"target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/MJRefreshBackFooter.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJRefresh/MJRefresh/Base/MJRefreshBackFooter.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/MJRefreshBackFooter.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJRefresh/MJRefresh/Base/MJRefreshBackFooter.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/MJRefresh/MJRefresh-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJRefresh/MJRefresh/Base/MJRefreshBackFooter.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/module.modulemap","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--generated-headers>","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--phase0-copy-headers>","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/MJRefreshBackFooter.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=MJRefresh","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/MJRefresh-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/MJRefresh-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/MJRefresh-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/MJRefresh-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/MJRefresh/MJRefresh-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/MJRefreshBackFooter.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/MJRefreshBackFooter.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJRefresh/MJRefresh/Base/MJRefreshBackFooter.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/MJRefreshBackFooter.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/MJRefreshBackFooter.d"],"deps-style":"makefile","signature":"15137dcca8061b197d946fe05926d8e2"}
"target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/MJRefreshBackGifFooter.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJRefresh/MJRefresh/Custom/Footer/Back/MJRefreshBackGifFooter.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/MJRefreshBackGifFooter.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJRefresh/MJRefresh/Custom/Footer/Back/MJRefreshBackGifFooter.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/MJRefresh/MJRefresh-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJRefresh/MJRefresh/Custom/Footer/Back/MJRefreshBackGifFooter.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/module.modulemap","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--generated-headers>","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--phase0-copy-headers>","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/MJRefreshBackGifFooter.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=MJRefresh","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/MJRefresh-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/MJRefresh-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/MJRefresh-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/MJRefresh-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/MJRefresh/MJRefresh-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/MJRefreshBackGifFooter.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/MJRefreshBackGifFooter.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJRefresh/MJRefresh/Custom/Footer/Back/MJRefreshBackGifFooter.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/MJRefreshBackGifFooter.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/MJRefreshBackGifFooter.d"],"deps-style":"makefile","signature":"770301b51a9e882bc3fdfad2a1503459"}
"target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/MJRefreshBackNormalFooter.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJRefresh/MJRefresh/Custom/Footer/Back/MJRefreshBackNormalFooter.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/MJRefreshBackNormalFooter.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJRefresh/MJRefresh/Custom/Footer/Back/MJRefreshBackNormalFooter.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/MJRefresh/MJRefresh-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJRefresh/MJRefresh/Custom/Footer/Back/MJRefreshBackNormalFooter.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/module.modulemap","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--generated-headers>","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--phase0-copy-headers>","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/MJRefreshBackNormalFooter.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=MJRefresh","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/MJRefresh-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/MJRefresh-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/MJRefresh-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/MJRefresh-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/MJRefresh/MJRefresh-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/MJRefreshBackNormalFooter.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/MJRefreshBackNormalFooter.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJRefresh/MJRefresh/Custom/Footer/Back/MJRefreshBackNormalFooter.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/MJRefreshBackNormalFooter.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/MJRefreshBackNormalFooter.d"],"deps-style":"makefile","signature":"4ad76f9b9c51dadb15792258322bc5c4"}
"target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/MJRefreshBackStateFooter.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJRefresh/MJRefresh/Custom/Footer/Back/MJRefreshBackStateFooter.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/MJRefreshBackStateFooter.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJRefresh/MJRefresh/Custom/Footer/Back/MJRefreshBackStateFooter.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/MJRefresh/MJRefresh-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJRefresh/MJRefresh/Custom/Footer/Back/MJRefreshBackStateFooter.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/module.modulemap","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--generated-headers>","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--phase0-copy-headers>","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/MJRefreshBackStateFooter.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=MJRefresh","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/MJRefresh-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/MJRefresh-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/MJRefresh-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/MJRefresh-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/MJRefresh/MJRefresh-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/MJRefreshBackStateFooter.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/MJRefreshBackStateFooter.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJRefresh/MJRefresh/Custom/Footer/Back/MJRefreshBackStateFooter.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/MJRefreshBackStateFooter.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/MJRefreshBackStateFooter.d"],"deps-style":"makefile","signature":"bac3d21ddf19198166c1abdbc31974b3"}
"target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/MJRefreshComponent.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJRefresh/MJRefresh/Base/MJRefreshComponent.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/MJRefreshComponent.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJRefresh/MJRefresh/Base/MJRefreshComponent.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/MJRefresh/MJRefresh-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJRefresh/MJRefresh/Base/MJRefreshComponent.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/module.modulemap","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--generated-headers>","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--phase0-copy-headers>","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/MJRefreshComponent.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=MJRefresh","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/MJRefresh-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/MJRefresh-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/MJRefresh-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/MJRefresh-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/MJRefresh/MJRefresh-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/MJRefreshComponent.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/MJRefreshComponent.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJRefresh/MJRefresh/Base/MJRefreshComponent.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/MJRefreshComponent.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/MJRefreshComponent.d"],"deps-style":"makefile","signature":"e647a8bcc3533cb61622315c56514f86"}
"target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/MJRefreshConfig.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJRefresh/MJRefresh/MJRefreshConfig.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/MJRefreshConfig.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJRefresh/MJRefresh/MJRefreshConfig.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/MJRefresh/MJRefresh-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJRefresh/MJRefresh/MJRefreshConfig.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/module.modulemap","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--generated-headers>","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--phase0-copy-headers>","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/MJRefreshConfig.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=MJRefresh","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/MJRefresh-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/MJRefresh-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/MJRefresh-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/MJRefresh-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/MJRefresh/MJRefresh-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/MJRefreshConfig.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/MJRefreshConfig.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJRefresh/MJRefresh/MJRefreshConfig.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/MJRefreshConfig.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/MJRefreshConfig.d"],"deps-style":"makefile","signature":"cc0946677186c57992bcd900e98445d5"}
"target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/MJRefreshConst.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJRefresh/MJRefresh/MJRefreshConst.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/MJRefreshConst.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJRefresh/MJRefresh/MJRefreshConst.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/MJRefresh/MJRefresh-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJRefresh/MJRefresh/MJRefreshConst.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/module.modulemap","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--generated-headers>","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--phase0-copy-headers>","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/MJRefreshConst.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=MJRefresh","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/MJRefresh-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/MJRefresh-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/MJRefresh-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/MJRefresh-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/MJRefresh/MJRefresh-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/MJRefreshConst.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/MJRefreshConst.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJRefresh/MJRefresh/MJRefreshConst.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/MJRefreshConst.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/MJRefreshConst.d"],"deps-style":"makefile","signature":"4e7a45c7bdbbec79dfdbd9841739257f"}
"target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/MJRefreshFooter.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJRefresh/MJRefresh/Base/MJRefreshFooter.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/MJRefreshFooter.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJRefresh/MJRefresh/Base/MJRefreshFooter.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/MJRefresh/MJRefresh-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJRefresh/MJRefresh/Base/MJRefreshFooter.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/module.modulemap","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--generated-headers>","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--phase0-copy-headers>","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/MJRefreshFooter.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=MJRefresh","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/MJRefresh-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/MJRefresh-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/MJRefresh-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/MJRefresh-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/MJRefresh/MJRefresh-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/MJRefreshFooter.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/MJRefreshFooter.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJRefresh/MJRefresh/Base/MJRefreshFooter.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/MJRefreshFooter.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/MJRefreshFooter.d"],"deps-style":"makefile","signature":"0d2408b992a070c8beb2b58aa7d17cb3"}
"target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/MJRefreshGifHeader.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJRefresh/MJRefresh/Custom/Header/MJRefreshGifHeader.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/MJRefreshGifHeader.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJRefresh/MJRefresh/Custom/Header/MJRefreshGifHeader.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/MJRefresh/MJRefresh-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJRefresh/MJRefresh/Custom/Header/MJRefreshGifHeader.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/module.modulemap","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--generated-headers>","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--phase0-copy-headers>","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/MJRefreshGifHeader.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=MJRefresh","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/MJRefresh-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/MJRefresh-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/MJRefresh-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/MJRefresh-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/MJRefresh/MJRefresh-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/MJRefreshGifHeader.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/MJRefreshGifHeader.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJRefresh/MJRefresh/Custom/Header/MJRefreshGifHeader.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/MJRefreshGifHeader.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/MJRefreshGifHeader.d"],"deps-style":"makefile","signature":"e684363a1662b01ead3ac18d5bd5bed3"}
"target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/MJRefreshHeader.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJRefresh/MJRefresh/Base/MJRefreshHeader.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/MJRefreshHeader.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJRefresh/MJRefresh/Base/MJRefreshHeader.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/MJRefresh/MJRefresh-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJRefresh/MJRefresh/Base/MJRefreshHeader.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/module.modulemap","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--generated-headers>","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--phase0-copy-headers>","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/MJRefreshHeader.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=MJRefresh","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/MJRefresh-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/MJRefresh-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/MJRefresh-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/MJRefresh-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/MJRefresh/MJRefresh-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/MJRefreshHeader.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/MJRefreshHeader.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJRefresh/MJRefresh/Base/MJRefreshHeader.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/MJRefreshHeader.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/MJRefreshHeader.d"],"deps-style":"makefile","signature":"21c7678a4676f6d847c15f1e6f7d9c4f"}
"target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/MJRefreshNormalHeader.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJRefresh/MJRefresh/Custom/Header/MJRefreshNormalHeader.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/MJRefreshNormalHeader.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJRefresh/MJRefresh/Custom/Header/MJRefreshNormalHeader.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/MJRefresh/MJRefresh-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJRefresh/MJRefresh/Custom/Header/MJRefreshNormalHeader.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/module.modulemap","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--generated-headers>","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--phase0-copy-headers>","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/MJRefreshNormalHeader.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=MJRefresh","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/MJRefresh-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/MJRefresh-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/MJRefresh-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/MJRefresh-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/MJRefresh/MJRefresh-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/MJRefreshNormalHeader.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/MJRefreshNormalHeader.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJRefresh/MJRefresh/Custom/Header/MJRefreshNormalHeader.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/MJRefreshNormalHeader.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/MJRefreshNormalHeader.d"],"deps-style":"makefile","signature":"f343ee60c90e90e2fcf5dd4df3fa0777"}
"target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/MJRefreshStateHeader.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJRefresh/MJRefresh/Custom/Header/MJRefreshStateHeader.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/MJRefreshStateHeader.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJRefresh/MJRefresh/Custom/Header/MJRefreshStateHeader.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/MJRefresh/MJRefresh-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJRefresh/MJRefresh/Custom/Header/MJRefreshStateHeader.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/module.modulemap","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--generated-headers>","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--phase0-copy-headers>","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/MJRefreshStateHeader.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=MJRefresh","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/MJRefresh-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/MJRefresh-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/MJRefresh-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/MJRefresh-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/MJRefresh/MJRefresh-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/MJRefreshStateHeader.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/MJRefreshStateHeader.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJRefresh/MJRefresh/Custom/Header/MJRefreshStateHeader.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/MJRefreshStateHeader.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/MJRefreshStateHeader.d"],"deps-style":"makefile","signature":"47dc8cb3a0a064d0f25893030246daef"}
"target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/MJRefresh_vers.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/DerivedSources/MJRefresh_vers.c normal arm64 c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/MJRefresh_vers.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/DerivedSources/MJRefresh_vers.c normal arm64 c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/DerivedSources/MJRefresh_vers.c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/module.modulemap","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--generated-headers>","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--phase0-copy-headers>","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/MJRefresh_vers.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c","-target","arm64-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=MJRefresh","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Werror=deprecated-objc-isa-usage","-Werror=objc-root-class","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/MJRefresh-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/MJRefresh-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/MJRefresh-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/MJRefresh-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/MJRefresh_vers.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/MJRefresh_vers.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/DerivedSources/MJRefresh_vers.c","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/MJRefresh_vers.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/MJRefresh_vers.d"],"deps-style":"makefile","signature":"cf24874980ec1d1a97e1a065496b5ff5"}
"target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/NSBundle+MJRefresh.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJRefresh/MJRefresh/NSBundle+MJRefresh.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/NSBundle+MJRefresh.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJRefresh/MJRefresh/NSBundle+MJRefresh.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/MJRefresh/MJRefresh-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJRefresh/MJRefresh/NSBundle+MJRefresh.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/module.modulemap","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--generated-headers>","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--phase0-copy-headers>","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/NSBundle+MJRefresh.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=MJRefresh","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/MJRefresh-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/MJRefresh-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/MJRefresh-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/MJRefresh-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/MJRefresh/MJRefresh-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/NSBundle+MJRefresh.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/NSBundle+MJRefresh.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJRefresh/MJRefresh/NSBundle+MJRefresh.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/NSBundle+MJRefresh.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/NSBundle+MJRefresh.d"],"deps-style":"makefile","signature":"aec27bbc23eb64c1b20714c60d339b52"}
"target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/UIScrollView+MJExtension.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJRefresh/MJRefresh/UIScrollView+MJExtension.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/UIScrollView+MJExtension.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJRefresh/MJRefresh/UIScrollView+MJExtension.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/MJRefresh/MJRefresh-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJRefresh/MJRefresh/UIScrollView+MJExtension.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/module.modulemap","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--generated-headers>","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--phase0-copy-headers>","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/UIScrollView+MJExtension.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=MJRefresh","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/MJRefresh-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/MJRefresh-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/MJRefresh-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/MJRefresh-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/MJRefresh/MJRefresh-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/UIScrollView+MJExtension.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/UIScrollView+MJExtension.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJRefresh/MJRefresh/UIScrollView+MJExtension.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/UIScrollView+MJExtension.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/UIScrollView+MJExtension.d"],"deps-style":"makefile","signature":"c73d1ed7859f7549e81f60186e84e0fc"}
"target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/UIScrollView+MJRefresh.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJRefresh/MJRefresh/UIScrollView+MJRefresh.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/UIScrollView+MJRefresh.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJRefresh/MJRefresh/UIScrollView+MJRefresh.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/MJRefresh/MJRefresh-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJRefresh/MJRefresh/UIScrollView+MJRefresh.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/module.modulemap","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--generated-headers>","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--phase0-copy-headers>","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/UIScrollView+MJRefresh.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=MJRefresh","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/MJRefresh-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/MJRefresh-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/MJRefresh-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/MJRefresh-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/MJRefresh/MJRefresh-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/UIScrollView+MJRefresh.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/UIScrollView+MJRefresh.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJRefresh/MJRefresh/UIScrollView+MJRefresh.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/UIScrollView+MJRefresh.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/UIScrollView+MJRefresh.d"],"deps-style":"makefile","signature":"487edc9163b18226e4f5a002ca695cdc"}
"target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/UIView+MJExtension.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJRefresh/MJRefresh/UIView+MJExtension.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/UIView+MJExtension.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJRefresh/MJRefresh/UIView+MJExtension.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/MJRefresh/MJRefresh-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJRefresh/MJRefresh/UIView+MJExtension.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/module.modulemap","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--generated-headers>","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--phase0-copy-headers>","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/UIView+MJExtension.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=MJRefresh","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/MJRefresh-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/MJRefresh-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/MJRefresh-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/MJRefresh-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/MJRefresh/MJRefresh-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/UIView+MJExtension.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/UIView+MJExtension.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJRefresh/MJRefresh/UIView+MJExtension.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/UIView+MJExtension.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/UIView+MJExtension.d"],"deps-style":"makefile","signature":"ad359874042e6c9d044649c9b8b52f8c"}
"target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/MJRefresh-dummy.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/MJRefresh/MJRefresh-dummy.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/MJRefresh-dummy.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/MJRefresh/MJRefresh-dummy.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/MJRefresh/MJRefresh-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/MJRefresh/MJRefresh-dummy.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/module.modulemap","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--generated-headers>","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--phase0-copy-headers>","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/MJRefresh-dummy.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=MJRefresh","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/MJRefresh-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/MJRefresh-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/MJRefresh-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/MJRefresh-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/MJRefresh/MJRefresh-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/MJRefresh-dummy.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/MJRefresh-dummy.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/MJRefresh/MJRefresh-dummy.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/MJRefresh-dummy.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/MJRefresh-dummy.d"],"deps-style":"makefile","signature":"d78d7932f06904e0e2a981cc49ac9b0d"}
"target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/MJRefreshAutoFooter.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJRefresh/MJRefresh/Base/MJRefreshAutoFooter.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/MJRefreshAutoFooter.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJRefresh/MJRefresh/Base/MJRefreshAutoFooter.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/MJRefresh/MJRefresh-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJRefresh/MJRefresh/Base/MJRefreshAutoFooter.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/module.modulemap","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--generated-headers>","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--phase0-copy-headers>","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/MJRefreshAutoFooter.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=MJRefresh","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/MJRefresh-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/MJRefresh-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/MJRefresh-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/MJRefresh-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/MJRefresh/MJRefresh-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/MJRefreshAutoFooter.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/MJRefreshAutoFooter.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJRefresh/MJRefresh/Base/MJRefreshAutoFooter.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/MJRefreshAutoFooter.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/MJRefreshAutoFooter.d"],"deps-style":"makefile","signature":"8caa08a90c2afbc89b849b583f79753a"}
"target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/MJRefreshAutoGifFooter.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJRefresh/MJRefresh/Custom/Footer/Auto/MJRefreshAutoGifFooter.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/MJRefreshAutoGifFooter.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJRefresh/MJRefresh/Custom/Footer/Auto/MJRefreshAutoGifFooter.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/MJRefresh/MJRefresh-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJRefresh/MJRefresh/Custom/Footer/Auto/MJRefreshAutoGifFooter.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/module.modulemap","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--generated-headers>","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--phase0-copy-headers>","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/MJRefreshAutoGifFooter.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=MJRefresh","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/MJRefresh-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/MJRefresh-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/MJRefresh-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/MJRefresh-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/MJRefresh/MJRefresh-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/MJRefreshAutoGifFooter.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/MJRefreshAutoGifFooter.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJRefresh/MJRefresh/Custom/Footer/Auto/MJRefreshAutoGifFooter.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/MJRefreshAutoGifFooter.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/MJRefreshAutoGifFooter.d"],"deps-style":"makefile","signature":"0e209c3682db477354d7793d6d9f5a3f"}
"target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/MJRefreshAutoNormalFooter.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJRefresh/MJRefresh/Custom/Footer/Auto/MJRefreshAutoNormalFooter.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/MJRefreshAutoNormalFooter.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJRefresh/MJRefresh/Custom/Footer/Auto/MJRefreshAutoNormalFooter.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/MJRefresh/MJRefresh-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJRefresh/MJRefresh/Custom/Footer/Auto/MJRefreshAutoNormalFooter.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/module.modulemap","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--generated-headers>","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--phase0-copy-headers>","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/MJRefreshAutoNormalFooter.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=MJRefresh","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/MJRefresh-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/MJRefresh-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/MJRefresh-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/MJRefresh-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/MJRefresh/MJRefresh-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/MJRefreshAutoNormalFooter.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/MJRefreshAutoNormalFooter.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJRefresh/MJRefresh/Custom/Footer/Auto/MJRefreshAutoNormalFooter.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/MJRefreshAutoNormalFooter.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/MJRefreshAutoNormalFooter.d"],"deps-style":"makefile","signature":"12afdd166de394ac9e2a9a05db350f60"}
"target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/MJRefreshAutoStateFooter.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJRefresh/MJRefresh/Custom/Footer/Auto/MJRefreshAutoStateFooter.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/MJRefreshAutoStateFooter.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJRefresh/MJRefresh/Custom/Footer/Auto/MJRefreshAutoStateFooter.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/MJRefresh/MJRefresh-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJRefresh/MJRefresh/Custom/Footer/Auto/MJRefreshAutoStateFooter.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/module.modulemap","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--generated-headers>","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--phase0-copy-headers>","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/MJRefreshAutoStateFooter.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=MJRefresh","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/MJRefresh-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/MJRefresh-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/MJRefresh-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/MJRefresh-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/MJRefresh/MJRefresh-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/MJRefreshAutoStateFooter.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/MJRefreshAutoStateFooter.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJRefresh/MJRefresh/Custom/Footer/Auto/MJRefreshAutoStateFooter.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/MJRefreshAutoStateFooter.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/MJRefreshAutoStateFooter.d"],"deps-style":"makefile","signature":"c4c69ba272f21456fbc35dcb6655a630"}
"target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/MJRefreshBackFooter.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJRefresh/MJRefresh/Base/MJRefreshBackFooter.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/MJRefreshBackFooter.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJRefresh/MJRefresh/Base/MJRefreshBackFooter.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/MJRefresh/MJRefresh-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJRefresh/MJRefresh/Base/MJRefreshBackFooter.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/module.modulemap","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--generated-headers>","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--phase0-copy-headers>","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/MJRefreshBackFooter.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=MJRefresh","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/MJRefresh-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/MJRefresh-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/MJRefresh-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/MJRefresh-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/MJRefresh/MJRefresh-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/MJRefreshBackFooter.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/MJRefreshBackFooter.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJRefresh/MJRefresh/Base/MJRefreshBackFooter.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/MJRefreshBackFooter.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/MJRefreshBackFooter.d"],"deps-style":"makefile","signature":"c054948f70a3d25680b5e3d1482e0fb4"}
"target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/MJRefreshBackGifFooter.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJRefresh/MJRefresh/Custom/Footer/Back/MJRefreshBackGifFooter.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/MJRefreshBackGifFooter.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJRefresh/MJRefresh/Custom/Footer/Back/MJRefreshBackGifFooter.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/MJRefresh/MJRefresh-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJRefresh/MJRefresh/Custom/Footer/Back/MJRefreshBackGifFooter.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/module.modulemap","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--generated-headers>","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--phase0-copy-headers>","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/MJRefreshBackGifFooter.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=MJRefresh","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/MJRefresh-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/MJRefresh-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/MJRefresh-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/MJRefresh-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/MJRefresh/MJRefresh-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/MJRefreshBackGifFooter.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/MJRefreshBackGifFooter.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJRefresh/MJRefresh/Custom/Footer/Back/MJRefreshBackGifFooter.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/MJRefreshBackGifFooter.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/MJRefreshBackGifFooter.d"],"deps-style":"makefile","signature":"7d691429b32c06e75a4360eb932180b2"}
"target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/MJRefreshBackNormalFooter.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJRefresh/MJRefresh/Custom/Footer/Back/MJRefreshBackNormalFooter.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/MJRefreshBackNormalFooter.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJRefresh/MJRefresh/Custom/Footer/Back/MJRefreshBackNormalFooter.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/MJRefresh/MJRefresh-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJRefresh/MJRefresh/Custom/Footer/Back/MJRefreshBackNormalFooter.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/module.modulemap","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--generated-headers>","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--phase0-copy-headers>","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/MJRefreshBackNormalFooter.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=MJRefresh","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/MJRefresh-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/MJRefresh-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/MJRefresh-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/MJRefresh-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/MJRefresh/MJRefresh-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/MJRefreshBackNormalFooter.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/MJRefreshBackNormalFooter.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJRefresh/MJRefresh/Custom/Footer/Back/MJRefreshBackNormalFooter.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/MJRefreshBackNormalFooter.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/MJRefreshBackNormalFooter.d"],"deps-style":"makefile","signature":"19a1821256b1532d8b11ab608b5f9077"}
"target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/MJRefreshBackStateFooter.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJRefresh/MJRefresh/Custom/Footer/Back/MJRefreshBackStateFooter.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/MJRefreshBackStateFooter.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJRefresh/MJRefresh/Custom/Footer/Back/MJRefreshBackStateFooter.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/MJRefresh/MJRefresh-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJRefresh/MJRefresh/Custom/Footer/Back/MJRefreshBackStateFooter.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/module.modulemap","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--generated-headers>","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--phase0-copy-headers>","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/MJRefreshBackStateFooter.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=MJRefresh","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/MJRefresh-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/MJRefresh-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/MJRefresh-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/MJRefresh-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/MJRefresh/MJRefresh-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/MJRefreshBackStateFooter.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/MJRefreshBackStateFooter.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJRefresh/MJRefresh/Custom/Footer/Back/MJRefreshBackStateFooter.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/MJRefreshBackStateFooter.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/MJRefreshBackStateFooter.d"],"deps-style":"makefile","signature":"1c4b1afe6c7d61abb2adc3be36f4c597"}
"target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/MJRefreshComponent.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJRefresh/MJRefresh/Base/MJRefreshComponent.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/MJRefreshComponent.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJRefresh/MJRefresh/Base/MJRefreshComponent.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/MJRefresh/MJRefresh-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJRefresh/MJRefresh/Base/MJRefreshComponent.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/module.modulemap","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--generated-headers>","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--phase0-copy-headers>","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/MJRefreshComponent.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=MJRefresh","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/MJRefresh-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/MJRefresh-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/MJRefresh-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/MJRefresh-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/MJRefresh/MJRefresh-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/MJRefreshComponent.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/MJRefreshComponent.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJRefresh/MJRefresh/Base/MJRefreshComponent.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/MJRefreshComponent.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/MJRefreshComponent.d"],"deps-style":"makefile","signature":"5256369fe13bb6cdc1ced451b0676d34"}
"target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/MJRefreshConfig.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJRefresh/MJRefresh/MJRefreshConfig.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/MJRefreshConfig.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJRefresh/MJRefresh/MJRefreshConfig.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/MJRefresh/MJRefresh-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJRefresh/MJRefresh/MJRefreshConfig.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/module.modulemap","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--generated-headers>","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--phase0-copy-headers>","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/MJRefreshConfig.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=MJRefresh","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/MJRefresh-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/MJRefresh-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/MJRefresh-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/MJRefresh-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/MJRefresh/MJRefresh-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/MJRefreshConfig.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/MJRefreshConfig.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJRefresh/MJRefresh/MJRefreshConfig.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/MJRefreshConfig.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/MJRefreshConfig.d"],"deps-style":"makefile","signature":"f83abb224908e30509b1e04c6642c13b"}
"target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/MJRefreshConst.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJRefresh/MJRefresh/MJRefreshConst.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/MJRefreshConst.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJRefresh/MJRefresh/MJRefreshConst.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/MJRefresh/MJRefresh-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJRefresh/MJRefresh/MJRefreshConst.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/module.modulemap","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--generated-headers>","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--phase0-copy-headers>","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/MJRefreshConst.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=MJRefresh","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/MJRefresh-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/MJRefresh-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/MJRefresh-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/MJRefresh-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/MJRefresh/MJRefresh-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/MJRefreshConst.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/MJRefreshConst.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJRefresh/MJRefresh/MJRefreshConst.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/MJRefreshConst.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/MJRefreshConst.d"],"deps-style":"makefile","signature":"9cc2be1a6e43039fb7871d93caf07953"}
"target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/MJRefreshFooter.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJRefresh/MJRefresh/Base/MJRefreshFooter.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/MJRefreshFooter.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJRefresh/MJRefresh/Base/MJRefreshFooter.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/MJRefresh/MJRefresh-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJRefresh/MJRefresh/Base/MJRefreshFooter.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/module.modulemap","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--generated-headers>","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--phase0-copy-headers>","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/MJRefreshFooter.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=MJRefresh","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/MJRefresh-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/MJRefresh-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/MJRefresh-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/MJRefresh-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/MJRefresh/MJRefresh-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/MJRefreshFooter.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/MJRefreshFooter.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJRefresh/MJRefresh/Base/MJRefreshFooter.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/MJRefreshFooter.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/MJRefreshFooter.d"],"deps-style":"makefile","signature":"30b172dd0fffd335b55ebda883a7a73e"}
"target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/MJRefreshGifHeader.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJRefresh/MJRefresh/Custom/Header/MJRefreshGifHeader.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/MJRefreshGifHeader.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJRefresh/MJRefresh/Custom/Header/MJRefreshGifHeader.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/MJRefresh/MJRefresh-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJRefresh/MJRefresh/Custom/Header/MJRefreshGifHeader.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/module.modulemap","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--generated-headers>","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--phase0-copy-headers>","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/MJRefreshGifHeader.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=MJRefresh","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/MJRefresh-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/MJRefresh-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/MJRefresh-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/MJRefresh-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/MJRefresh/MJRefresh-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/MJRefreshGifHeader.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/MJRefreshGifHeader.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJRefresh/MJRefresh/Custom/Header/MJRefreshGifHeader.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/MJRefreshGifHeader.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/MJRefreshGifHeader.d"],"deps-style":"makefile","signature":"a5e9260f2014df66514a2d420764a391"}
"target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/MJRefreshHeader.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJRefresh/MJRefresh/Base/MJRefreshHeader.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/MJRefreshHeader.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJRefresh/MJRefresh/Base/MJRefreshHeader.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/MJRefresh/MJRefresh-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJRefresh/MJRefresh/Base/MJRefreshHeader.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/module.modulemap","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--generated-headers>","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--phase0-copy-headers>","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/MJRefreshHeader.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=MJRefresh","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/MJRefresh-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/MJRefresh-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/MJRefresh-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/MJRefresh-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/MJRefresh/MJRefresh-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/MJRefreshHeader.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/MJRefreshHeader.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJRefresh/MJRefresh/Base/MJRefreshHeader.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/MJRefreshHeader.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/MJRefreshHeader.d"],"deps-style":"makefile","signature":"30157bda96e6f57797f3d97ba730228c"}
"target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/MJRefreshNormalHeader.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJRefresh/MJRefresh/Custom/Header/MJRefreshNormalHeader.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/MJRefreshNormalHeader.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJRefresh/MJRefresh/Custom/Header/MJRefreshNormalHeader.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/MJRefresh/MJRefresh-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJRefresh/MJRefresh/Custom/Header/MJRefreshNormalHeader.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/module.modulemap","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--generated-headers>","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--phase0-copy-headers>","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/MJRefreshNormalHeader.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=MJRefresh","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/MJRefresh-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/MJRefresh-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/MJRefresh-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/MJRefresh-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/MJRefresh/MJRefresh-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/MJRefreshNormalHeader.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/MJRefreshNormalHeader.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJRefresh/MJRefresh/Custom/Header/MJRefreshNormalHeader.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/MJRefreshNormalHeader.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/MJRefreshNormalHeader.d"],"deps-style":"makefile","signature":"baae31929ae7a1867583764a5fb44fd4"}
"target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/MJRefreshStateHeader.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJRefresh/MJRefresh/Custom/Header/MJRefreshStateHeader.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/MJRefreshStateHeader.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJRefresh/MJRefresh/Custom/Header/MJRefreshStateHeader.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/MJRefresh/MJRefresh-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJRefresh/MJRefresh/Custom/Header/MJRefreshStateHeader.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/module.modulemap","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--generated-headers>","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--phase0-copy-headers>","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/MJRefreshStateHeader.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=MJRefresh","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/MJRefresh-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/MJRefresh-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/MJRefresh-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/MJRefresh-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/MJRefresh/MJRefresh-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/MJRefreshStateHeader.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/MJRefreshStateHeader.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJRefresh/MJRefresh/Custom/Header/MJRefreshStateHeader.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/MJRefreshStateHeader.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/MJRefreshStateHeader.d"],"deps-style":"makefile","signature":"9fff1d0a896b59fff56e67d3ff569124"}
"target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/MJRefresh_vers.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/DerivedSources/MJRefresh_vers.c normal armv7 c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/MJRefresh_vers.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/DerivedSources/MJRefresh_vers.c normal armv7 c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/DerivedSources/MJRefresh_vers.c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/module.modulemap","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--generated-headers>","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--phase0-copy-headers>","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/MJRefresh_vers.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c","-target","armv7-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=MJRefresh","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Werror=deprecated-objc-isa-usage","-Werror=objc-root-class","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/MJRefresh-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/MJRefresh-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/MJRefresh-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/MJRefresh-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/MJRefresh_vers.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/MJRefresh_vers.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/DerivedSources/MJRefresh_vers.c","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/MJRefresh_vers.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/MJRefresh_vers.d"],"deps-style":"makefile","signature":"dd5e681942a98d0402f6b1642e066113"}
"target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/NSBundle+MJRefresh.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJRefresh/MJRefresh/NSBundle+MJRefresh.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/NSBundle+MJRefresh.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJRefresh/MJRefresh/NSBundle+MJRefresh.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/MJRefresh/MJRefresh-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJRefresh/MJRefresh/NSBundle+MJRefresh.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/module.modulemap","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--generated-headers>","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--phase0-copy-headers>","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/NSBundle+MJRefresh.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=MJRefresh","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/MJRefresh-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/MJRefresh-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/MJRefresh-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/MJRefresh-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/MJRefresh/MJRefresh-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/NSBundle+MJRefresh.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/NSBundle+MJRefresh.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJRefresh/MJRefresh/NSBundle+MJRefresh.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/NSBundle+MJRefresh.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/NSBundle+MJRefresh.d"],"deps-style":"makefile","signature":"d7d5a5f6c42371aa0d9995c84c6af61c"}
"target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/UIScrollView+MJExtension.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJRefresh/MJRefresh/UIScrollView+MJExtension.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/UIScrollView+MJExtension.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJRefresh/MJRefresh/UIScrollView+MJExtension.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/MJRefresh/MJRefresh-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJRefresh/MJRefresh/UIScrollView+MJExtension.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/module.modulemap","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--generated-headers>","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--phase0-copy-headers>","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/UIScrollView+MJExtension.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=MJRefresh","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/MJRefresh-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/MJRefresh-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/MJRefresh-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/MJRefresh-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/MJRefresh/MJRefresh-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/UIScrollView+MJExtension.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/UIScrollView+MJExtension.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJRefresh/MJRefresh/UIScrollView+MJExtension.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/UIScrollView+MJExtension.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/UIScrollView+MJExtension.d"],"deps-style":"makefile","signature":"1622be8badefa57ace569a0e22e7d574"}
"target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/UIScrollView+MJRefresh.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJRefresh/MJRefresh/UIScrollView+MJRefresh.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/UIScrollView+MJRefresh.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJRefresh/MJRefresh/UIScrollView+MJRefresh.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/MJRefresh/MJRefresh-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJRefresh/MJRefresh/UIScrollView+MJRefresh.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/module.modulemap","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--generated-headers>","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--phase0-copy-headers>","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/UIScrollView+MJRefresh.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=MJRefresh","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/MJRefresh-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/MJRefresh-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/MJRefresh-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/MJRefresh-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/MJRefresh/MJRefresh-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/UIScrollView+MJRefresh.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/UIScrollView+MJRefresh.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJRefresh/MJRefresh/UIScrollView+MJRefresh.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/UIScrollView+MJRefresh.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/UIScrollView+MJRefresh.d"],"deps-style":"makefile","signature":"e793aed92a1af3f7d2d99583e42c9bd8"}
"target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/UIView+MJExtension.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJRefresh/MJRefresh/UIView+MJExtension.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/UIView+MJExtension.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJRefresh/MJRefresh/UIView+MJExtension.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/MJRefresh/MJRefresh-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJRefresh/MJRefresh/UIView+MJExtension.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/module.modulemap","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--generated-headers>","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--phase0-copy-headers>","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/UIView+MJExtension.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=MJRefresh","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/MJRefresh-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/MJRefresh-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/MJRefresh-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/MJRefresh-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/MJRefresh/MJRefresh-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/UIView+MJExtension.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/UIView+MJExtension.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJRefresh/MJRefresh/UIView+MJExtension.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/UIView+MJExtension.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/UIView+MJExtension.d"],"deps-style":"makefile","signature":"0a40c447b150665aceeb4f3be20c3795"}
"target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJRefresh/MJRefresh/Base/MJRefreshAutoFooter.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/MJRefresh.framework/Headers/MJRefreshAutoFooter.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJRefresh/MJRefresh/Base/MJRefreshAutoFooter.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/MJRefresh.framework/Headers/MJRefreshAutoFooter.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJRefresh/MJRefresh/Base/MJRefreshAutoFooter.h/","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--HeadermapTaskProducer>","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/MJRefresh.framework/Headers/MJRefreshAutoFooter.h"]}
"target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJRefresh/MJRefresh/Base/MJRefreshBackFooter.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/MJRefresh.framework/Headers/MJRefreshBackFooter.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJRefresh/MJRefresh/Base/MJRefreshBackFooter.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/MJRefresh.framework/Headers/MJRefreshBackFooter.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJRefresh/MJRefresh/Base/MJRefreshBackFooter.h/","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--HeadermapTaskProducer>","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/MJRefresh.framework/Headers/MJRefreshBackFooter.h"]}
"target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJRefresh/MJRefresh/Base/MJRefreshComponent.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/MJRefresh.framework/Headers/MJRefreshComponent.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJRefresh/MJRefresh/Base/MJRefreshComponent.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/MJRefresh.framework/Headers/MJRefreshComponent.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJRefresh/MJRefresh/Base/MJRefreshComponent.h/","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--HeadermapTaskProducer>","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/MJRefresh.framework/Headers/MJRefreshComponent.h"]}
"target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJRefresh/MJRefresh/Base/MJRefreshFooter.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/MJRefresh.framework/Headers/MJRefreshFooter.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJRefresh/MJRefresh/Base/MJRefreshFooter.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/MJRefresh.framework/Headers/MJRefreshFooter.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJRefresh/MJRefresh/Base/MJRefreshFooter.h/","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--HeadermapTaskProducer>","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/MJRefresh.framework/Headers/MJRefreshFooter.h"]}
"target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJRefresh/MJRefresh/Base/MJRefreshHeader.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/MJRefresh.framework/Headers/MJRefreshHeader.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJRefresh/MJRefresh/Base/MJRefreshHeader.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/MJRefresh.framework/Headers/MJRefreshHeader.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJRefresh/MJRefresh/Base/MJRefreshHeader.h/","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--HeadermapTaskProducer>","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/MJRefresh.framework/Headers/MJRefreshHeader.h"]}
"target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJRefresh/MJRefresh/Custom/Footer/Auto/MJRefreshAutoGifFooter.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/MJRefresh.framework/Headers/MJRefreshAutoGifFooter.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJRefresh/MJRefresh/Custom/Footer/Auto/MJRefreshAutoGifFooter.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/MJRefresh.framework/Headers/MJRefreshAutoGifFooter.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJRefresh/MJRefresh/Custom/Footer/Auto/MJRefreshAutoGifFooter.h/","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--HeadermapTaskProducer>","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/MJRefresh.framework/Headers/MJRefreshAutoGifFooter.h"]}
"target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJRefresh/MJRefresh/Custom/Footer/Auto/MJRefreshAutoNormalFooter.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/MJRefresh.framework/Headers/MJRefreshAutoNormalFooter.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJRefresh/MJRefresh/Custom/Footer/Auto/MJRefreshAutoNormalFooter.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/MJRefresh.framework/Headers/MJRefreshAutoNormalFooter.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJRefresh/MJRefresh/Custom/Footer/Auto/MJRefreshAutoNormalFooter.h/","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--HeadermapTaskProducer>","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/MJRefresh.framework/Headers/MJRefreshAutoNormalFooter.h"]}
"target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJRefresh/MJRefresh/Custom/Footer/Auto/MJRefreshAutoStateFooter.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/MJRefresh.framework/Headers/MJRefreshAutoStateFooter.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJRefresh/MJRefresh/Custom/Footer/Auto/MJRefreshAutoStateFooter.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/MJRefresh.framework/Headers/MJRefreshAutoStateFooter.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJRefresh/MJRefresh/Custom/Footer/Auto/MJRefreshAutoStateFooter.h/","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--HeadermapTaskProducer>","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/MJRefresh.framework/Headers/MJRefreshAutoStateFooter.h"]}
"target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJRefresh/MJRefresh/Custom/Footer/Back/MJRefreshBackGifFooter.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/MJRefresh.framework/Headers/MJRefreshBackGifFooter.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJRefresh/MJRefresh/Custom/Footer/Back/MJRefreshBackGifFooter.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/MJRefresh.framework/Headers/MJRefreshBackGifFooter.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJRefresh/MJRefresh/Custom/Footer/Back/MJRefreshBackGifFooter.h/","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--HeadermapTaskProducer>","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/MJRefresh.framework/Headers/MJRefreshBackGifFooter.h"]}
"target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJRefresh/MJRefresh/Custom/Footer/Back/MJRefreshBackNormalFooter.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/MJRefresh.framework/Headers/MJRefreshBackNormalFooter.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJRefresh/MJRefresh/Custom/Footer/Back/MJRefreshBackNormalFooter.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/MJRefresh.framework/Headers/MJRefreshBackNormalFooter.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJRefresh/MJRefresh/Custom/Footer/Back/MJRefreshBackNormalFooter.h/","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--HeadermapTaskProducer>","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/MJRefresh.framework/Headers/MJRefreshBackNormalFooter.h"]}
"target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJRefresh/MJRefresh/Custom/Footer/Back/MJRefreshBackStateFooter.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/MJRefresh.framework/Headers/MJRefreshBackStateFooter.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJRefresh/MJRefresh/Custom/Footer/Back/MJRefreshBackStateFooter.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/MJRefresh.framework/Headers/MJRefreshBackStateFooter.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJRefresh/MJRefresh/Custom/Footer/Back/MJRefreshBackStateFooter.h/","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--HeadermapTaskProducer>","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/MJRefresh.framework/Headers/MJRefreshBackStateFooter.h"]}
"target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJRefresh/MJRefresh/Custom/Header/MJRefreshGifHeader.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/MJRefresh.framework/Headers/MJRefreshGifHeader.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJRefresh/MJRefresh/Custom/Header/MJRefreshGifHeader.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/MJRefresh.framework/Headers/MJRefreshGifHeader.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJRefresh/MJRefresh/Custom/Header/MJRefreshGifHeader.h/","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--HeadermapTaskProducer>","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/MJRefresh.framework/Headers/MJRefreshGifHeader.h"]}
"target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJRefresh/MJRefresh/Custom/Header/MJRefreshNormalHeader.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/MJRefresh.framework/Headers/MJRefreshNormalHeader.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJRefresh/MJRefresh/Custom/Header/MJRefreshNormalHeader.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/MJRefresh.framework/Headers/MJRefreshNormalHeader.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJRefresh/MJRefresh/Custom/Header/MJRefreshNormalHeader.h/","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--HeadermapTaskProducer>","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/MJRefresh.framework/Headers/MJRefreshNormalHeader.h"]}
"target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJRefresh/MJRefresh/Custom/Header/MJRefreshStateHeader.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/MJRefresh.framework/Headers/MJRefreshStateHeader.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJRefresh/MJRefresh/Custom/Header/MJRefreshStateHeader.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/MJRefresh.framework/Headers/MJRefreshStateHeader.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJRefresh/MJRefresh/Custom/Header/MJRefreshStateHeader.h/","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--HeadermapTaskProducer>","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/MJRefresh.framework/Headers/MJRefreshStateHeader.h"]}
"target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJRefresh/MJRefresh/MJRefresh.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/MJRefresh.framework/Headers/MJRefresh.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJRefresh/MJRefresh/MJRefresh.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/MJRefresh.framework/Headers/MJRefresh.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJRefresh/MJRefresh/MJRefresh.h/","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--HeadermapTaskProducer>","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/MJRefresh.framework/Headers/MJRefresh.h"]}
"target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJRefresh/MJRefresh/MJRefreshConfig.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/MJRefresh.framework/Headers/MJRefreshConfig.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJRefresh/MJRefresh/MJRefreshConfig.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/MJRefresh.framework/Headers/MJRefreshConfig.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJRefresh/MJRefresh/MJRefreshConfig.h/","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--HeadermapTaskProducer>","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/MJRefresh.framework/Headers/MJRefreshConfig.h"]}
"target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJRefresh/MJRefresh/MJRefreshConst.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/MJRefresh.framework/Headers/MJRefreshConst.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJRefresh/MJRefresh/MJRefreshConst.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/MJRefresh.framework/Headers/MJRefreshConst.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJRefresh/MJRefresh/MJRefreshConst.h/","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--HeadermapTaskProducer>","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/MJRefresh.framework/Headers/MJRefreshConst.h"]}
"target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJRefresh/MJRefresh/NSBundle+MJRefresh.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/MJRefresh.framework/Headers/NSBundle+MJRefresh.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJRefresh/MJRefresh/NSBundle+MJRefresh.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/MJRefresh.framework/Headers/NSBundle+MJRefresh.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJRefresh/MJRefresh/NSBundle+MJRefresh.h/","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--HeadermapTaskProducer>","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/MJRefresh.framework/Headers/NSBundle+MJRefresh.h"]}
"target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJRefresh/MJRefresh/UIScrollView+MJExtension.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/MJRefresh.framework/Headers/UIScrollView+MJExtension.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJRefresh/MJRefresh/UIScrollView+MJExtension.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/MJRefresh.framework/Headers/UIScrollView+MJExtension.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJRefresh/MJRefresh/UIScrollView+MJExtension.h/","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--HeadermapTaskProducer>","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/MJRefresh.framework/Headers/UIScrollView+MJExtension.h"]}
"target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJRefresh/MJRefresh/UIScrollView+MJRefresh.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/MJRefresh.framework/Headers/UIScrollView+MJRefresh.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJRefresh/MJRefresh/UIScrollView+MJRefresh.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/MJRefresh.framework/Headers/UIScrollView+MJRefresh.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJRefresh/MJRefresh/UIScrollView+MJRefresh.h/","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--HeadermapTaskProducer>","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/MJRefresh.framework/Headers/UIScrollView+MJRefresh.h"]}
"target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJRefresh/MJRefresh/UIView+MJExtension.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/MJRefresh.framework/Headers/UIView+MJExtension.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJRefresh/MJRefresh/UIView+MJExtension.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/MJRefresh.framework/Headers/UIView+MJExtension.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJRefresh/MJRefresh/UIView+MJExtension.h/","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--HeadermapTaskProducer>","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/MJRefresh.framework/Headers/UIView+MJExtension.h"]}
"target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/MJRefresh/MJRefresh-umbrella.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/MJRefresh.framework/Headers/MJRefresh-umbrella.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/MJRefresh/MJRefresh-umbrella.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/MJRefresh.framework/Headers/MJRefresh-umbrella.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/MJRefresh/MJRefresh-umbrella.h/","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--HeadermapTaskProducer>","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/MJRefresh.framework/Headers/MJRefresh-umbrella.h"]}
"target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e-:Debug:CpResource /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJRefresh/MJRefresh/MJRefresh.bundle /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/MJRefresh.framework/MJRefresh.bundle": {"tool":"file-copy","description":"CpResource /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJRefresh/MJRefresh/MJRefresh.bundle /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/MJRefresh.framework/MJRefresh.bundle","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/MJRefresh/MJRefresh/MJRefresh.bundle/","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--phase1-compile-sources>","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/MJRefresh.framework/MJRefresh.bundle"]}
"target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e-:Debug:CreateUniversalBinary /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/MJRefresh.framework/MJRefresh normal armv7 arm64": {"tool":"shell","description":"CreateUniversalBinary /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/MJRefresh.framework/MJRefresh normal armv7 arm64","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/Binary/MJRefresh","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/Binary/MJRefresh","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--phase0-copy-headers>","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/MJRefresh.framework/MJRefresh","<Linked Binary /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/MJRefresh.framework/MJRefresh>"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/lipo","-create","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/Binary/MJRefresh","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/Binary/MJRefresh","-output","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/MJRefresh.framework/MJRefresh"],"env":{},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","signature":"902666db93abdab60106a02b24cb89ae"}
"target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e-:Debug:Ditto /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/module.modulemap /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/MJRefresh.framework/Modules/module.modulemap": {"tool":"file-copy","description":"Ditto /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/module.modulemap /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/MJRefresh.framework/Modules/module.modulemap","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/module.modulemap/","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--HeadermapTaskProducer>","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/MJRefresh.framework/Modules/module.modulemap"]}
"target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e-:Debug:Ld /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/Binary/MJRefresh normal arm64": {"tool":"shell","description":"Ld /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/Binary/MJRefresh normal arm64","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/MJRefresh-dummy.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/MJRefreshAutoFooter.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/MJRefreshAutoGifFooter.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/MJRefreshAutoNormalFooter.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/MJRefreshAutoStateFooter.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/MJRefreshBackFooter.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/MJRefreshBackGifFooter.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/MJRefreshBackNormalFooter.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/MJRefreshBackStateFooter.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/MJRefreshComponent.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/MJRefreshConfig.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/MJRefreshConst.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/MJRefreshFooter.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/MJRefreshGifHeader.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/MJRefreshHeader.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/MJRefreshNormalHeader.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/MJRefreshStateHeader.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/NSBundle+MJRefresh.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/UIScrollView+MJExtension.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/UIScrollView+MJRefresh.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/UIView+MJExtension.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/MJRefresh_vers.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/MJRefresh.LinkFileList","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--phase0-copy-headers>","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/Binary/MJRefresh"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-target","arm64-apple-ios8.0","-dynamiclib","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-L/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh","-filelist","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/MJRefresh.LinkFileList","-install_name","@rpath/MJRefresh.framework/MJRefresh","-Xlinker","-rpath","-Xlinker","@executable_path/Frameworks","-Xlinker","-rpath","-Xlinker","@loader_path/Frameworks","-dead_strip","-Xlinker","-object_path_lto","-Xlinker","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/MJRefresh_lto.o","-Xlinker","-export_dynamic","-Xlinker","-no_deduplicate","-fembed-bitcode-marker","-fobjc-arc","-fobjc-link-runtime","-framework","Foundation","-compatibility_version","1","-current_version","1","-Xlinker","-dependency_info","-Xlinker","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/MJRefresh_dependency_info.dat","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/Binary/MJRefresh"],"env":{},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/MJRefresh_dependency_info.dat"],"deps-style":"dependency-info","signature":"7d398c5d9ce8584fa280d258bcb120ae"}
"target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e-:Debug:Ld /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/Binary/MJRefresh normal armv7": {"tool":"shell","description":"Ld /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/Binary/MJRefresh normal armv7","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/MJRefresh-dummy.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/MJRefreshAutoFooter.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/MJRefreshAutoGifFooter.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/MJRefreshAutoNormalFooter.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/MJRefreshAutoStateFooter.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/MJRefreshBackFooter.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/MJRefreshBackGifFooter.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/MJRefreshBackNormalFooter.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/MJRefreshBackStateFooter.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/MJRefreshComponent.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/MJRefreshConfig.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/MJRefreshConst.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/MJRefreshFooter.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/MJRefreshGifHeader.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/MJRefreshHeader.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/MJRefreshNormalHeader.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/MJRefreshStateHeader.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/NSBundle+MJRefresh.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/UIScrollView+MJExtension.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/UIScrollView+MJRefresh.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/UIView+MJExtension.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/MJRefresh_vers.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/MJRefresh.LinkFileList","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--phase0-copy-headers>","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/Binary/MJRefresh"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-target","armv7-apple-ios8.0","-dynamiclib","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-L/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh","-filelist","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/MJRefresh.LinkFileList","-install_name","@rpath/MJRefresh.framework/MJRefresh","-Xlinker","-rpath","-Xlinker","@executable_path/Frameworks","-Xlinker","-rpath","-Xlinker","@loader_path/Frameworks","-dead_strip","-Xlinker","-object_path_lto","-Xlinker","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/MJRefresh_lto.o","-Xlinker","-export_dynamic","-Xlinker","-no_deduplicate","-fembed-bitcode-marker","-fobjc-arc","-fobjc-link-runtime","-framework","Foundation","-compatibility_version","1","-current_version","1","-Xlinker","-dependency_info","-Xlinker","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/MJRefresh_dependency_info.dat","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/Binary/MJRefresh"],"env":{},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/MJRefresh_dependency_info.dat"],"deps-style":"dependency-info","signature":"5c34352ea5654bf531cd719e73e5adc8"}
"target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e-:Debug:MkDir /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/MJRefresh.framework": {"tool":"mkdir","description":"MkDir /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/MJRefresh.framework","inputs":["<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--start>","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/MJRefresh.framework","<MkDir /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/MJRefresh.framework>"]}
"target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e-:Debug:MkDir /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/MJRefresh.framework/Headers": {"tool":"mkdir","description":"MkDir /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/MJRefresh.framework/Headers","inputs":["<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--start>","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/MJRefresh.framework/Headers","<MkDir /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/MJRefresh.framework/Headers>"]}
"target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e-:Debug:ProcessInfoPlistFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/MJRefresh.framework/Info.plist /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/MJRefresh/MJRefresh-Info.plist": {"tool":"info-plist-processor","description":"ProcessInfoPlistFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/MJRefresh.framework/Info.plist /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/MJRefresh/MJRefresh-Info.plist","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/MJRefresh/MJRefresh-Info.plist","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--HeadermapTaskProducer>","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/MJRefresh.framework/Info.plist"]}
"target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e-:Debug:Touch /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/MJRefresh.framework": {"tool":"shell","description":"Touch /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/MJRefresh.framework","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/MJRefresh.framework","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--Barrier-RegisterExecutionPolicyException>","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--entry>"],"outputs":["<Touch /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/MJRefresh.framework>"],"args":["/usr/bin/touch","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/MJRefresh.framework"],"env":{},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","signature":"c178a0e6e3885ace4f145aaec4a40c16"}
"target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/DerivedSources/MJRefresh_vers.c": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/DerivedSources/MJRefresh_vers.c","inputs":["<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--phase0-copy-headers>","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/DerivedSources/MJRefresh_vers.c"]}
"target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/MJRefresh-all-non-framework-target-headers.hmap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/MJRefresh-all-non-framework-target-headers.hmap","inputs":["<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--GeneratedFilesTaskProducer>","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/MJRefresh-all-non-framework-target-headers.hmap"]}
"target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/MJRefresh-all-target-headers.hmap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/MJRefresh-all-target-headers.hmap","inputs":["<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--GeneratedFilesTaskProducer>","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/MJRefresh-all-target-headers.hmap"]}
"target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/MJRefresh-generated-files.hmap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/MJRefresh-generated-files.hmap","inputs":["<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--GeneratedFilesTaskProducer>","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/MJRefresh-generated-files.hmap"]}
"target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/MJRefresh-own-target-headers.hmap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/MJRefresh-own-target-headers.hmap","inputs":["<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--GeneratedFilesTaskProducer>","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/MJRefresh-own-target-headers.hmap"]}
"target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/MJRefresh-project-headers.hmap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/MJRefresh-project-headers.hmap","inputs":["<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--GeneratedFilesTaskProducer>","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/MJRefresh-project-headers.hmap"]}
"target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/MJRefresh.hmap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/MJRefresh.hmap","inputs":["<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--GeneratedFilesTaskProducer>","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/MJRefresh.hmap"]}
"target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/MJRefresh.LinkFileList": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/MJRefresh.LinkFileList","inputs":["<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--phase0-copy-headers>","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/arm64/MJRefresh.LinkFileList"]}
"target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/MJRefresh.LinkFileList": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/MJRefresh.LinkFileList","inputs":["<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--phase0-copy-headers>","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/Objects-normal/armv7/MJRefresh.LinkFileList"]}
"target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/all-product-headers.yaml": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/all-product-headers.yaml","inputs":["<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--GeneratedFilesTaskProducer>","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/all-product-headers.yaml"]}
"target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/module.modulemap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/module.modulemap","inputs":["<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--HeadermapTaskProducer>","<target-MJRefresh-285b96a559574e49fe0e1a40c03a5a8e3c17a3bfe89d9569c9fae6fd53f1dc2e--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/MJRefresh.build/module.modulemap"]}
"target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/arm64/MASCompositeConstraint.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Masonry/Masonry/MASCompositeConstraint.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/arm64/MASCompositeConstraint.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Masonry/Masonry/MASCompositeConstraint.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/Masonry/Masonry-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Masonry/Masonry/MASCompositeConstraint.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/module.modulemap","<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--generated-headers>","<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--phase0-copy-headers>","<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/arm64/MASCompositeConstraint.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=Masonry","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Masonry-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Masonry-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Masonry-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Masonry-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/Masonry/Masonry-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/arm64/MASCompositeConstraint.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/arm64/MASCompositeConstraint.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Masonry/Masonry/MASCompositeConstraint.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/arm64/MASCompositeConstraint.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/arm64/MASCompositeConstraint.d"],"deps-style":"makefile","signature":"6d7c435a6df6c9024d6e6272bc02a3e2"}
"target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/arm64/MASConstraint.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Masonry/Masonry/MASConstraint.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/arm64/MASConstraint.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Masonry/Masonry/MASConstraint.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/Masonry/Masonry-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Masonry/Masonry/MASConstraint.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/module.modulemap","<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--generated-headers>","<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--phase0-copy-headers>","<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/arm64/MASConstraint.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=Masonry","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Masonry-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Masonry-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Masonry-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Masonry-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/Masonry/Masonry-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/arm64/MASConstraint.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/arm64/MASConstraint.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Masonry/Masonry/MASConstraint.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/arm64/MASConstraint.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/arm64/MASConstraint.d"],"deps-style":"makefile","signature":"f467241296490436104682fbbbc0d9e7"}
"target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/arm64/MASConstraintMaker.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Masonry/Masonry/MASConstraintMaker.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/arm64/MASConstraintMaker.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Masonry/Masonry/MASConstraintMaker.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/Masonry/Masonry-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Masonry/Masonry/MASConstraintMaker.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/module.modulemap","<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--generated-headers>","<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--phase0-copy-headers>","<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/arm64/MASConstraintMaker.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=Masonry","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Masonry-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Masonry-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Masonry-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Masonry-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/Masonry/Masonry-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/arm64/MASConstraintMaker.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/arm64/MASConstraintMaker.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Masonry/Masonry/MASConstraintMaker.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/arm64/MASConstraintMaker.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/arm64/MASConstraintMaker.d"],"deps-style":"makefile","signature":"20579b9c6a69e4148e6a7e80b38bd37c"}
"target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/arm64/MASLayoutConstraint.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Masonry/Masonry/MASLayoutConstraint.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/arm64/MASLayoutConstraint.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Masonry/Masonry/MASLayoutConstraint.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/Masonry/Masonry-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Masonry/Masonry/MASLayoutConstraint.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/module.modulemap","<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--generated-headers>","<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--phase0-copy-headers>","<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/arm64/MASLayoutConstraint.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=Masonry","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Masonry-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Masonry-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Masonry-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Masonry-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/Masonry/Masonry-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/arm64/MASLayoutConstraint.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/arm64/MASLayoutConstraint.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Masonry/Masonry/MASLayoutConstraint.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/arm64/MASLayoutConstraint.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/arm64/MASLayoutConstraint.d"],"deps-style":"makefile","signature":"1e70dd0a86eb5927359ea4b413d35ef7"}
"target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/arm64/MASViewAttribute.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Masonry/Masonry/MASViewAttribute.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/arm64/MASViewAttribute.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Masonry/Masonry/MASViewAttribute.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/Masonry/Masonry-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Masonry/Masonry/MASViewAttribute.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/module.modulemap","<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--generated-headers>","<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--phase0-copy-headers>","<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/arm64/MASViewAttribute.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=Masonry","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Masonry-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Masonry-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Masonry-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Masonry-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/Masonry/Masonry-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/arm64/MASViewAttribute.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/arm64/MASViewAttribute.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Masonry/Masonry/MASViewAttribute.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/arm64/MASViewAttribute.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/arm64/MASViewAttribute.d"],"deps-style":"makefile","signature":"1570490a0215d8cd5cf480c99d917082"}
"target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/arm64/MASViewConstraint.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Masonry/Masonry/MASViewConstraint.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/arm64/MASViewConstraint.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Masonry/Masonry/MASViewConstraint.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/Masonry/Masonry-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Masonry/Masonry/MASViewConstraint.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/module.modulemap","<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--generated-headers>","<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--phase0-copy-headers>","<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/arm64/MASViewConstraint.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=Masonry","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Masonry-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Masonry-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Masonry-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Masonry-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/Masonry/Masonry-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/arm64/MASViewConstraint.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/arm64/MASViewConstraint.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Masonry/Masonry/MASViewConstraint.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/arm64/MASViewConstraint.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/arm64/MASViewConstraint.d"],"deps-style":"makefile","signature":"4b20023a38864e771fe8953a7e84a650"}
"target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/arm64/Masonry-dummy.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/Masonry/Masonry-dummy.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/arm64/Masonry-dummy.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/Masonry/Masonry-dummy.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/Masonry/Masonry-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/Masonry/Masonry-dummy.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/module.modulemap","<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--generated-headers>","<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--phase0-copy-headers>","<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/arm64/Masonry-dummy.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=Masonry","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Masonry-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Masonry-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Masonry-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Masonry-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/Masonry/Masonry-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/arm64/Masonry-dummy.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/arm64/Masonry-dummy.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/Masonry/Masonry-dummy.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/arm64/Masonry-dummy.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/arm64/Masonry-dummy.d"],"deps-style":"makefile","signature":"9c4446f05934d4074393943ca9ab2527"}
"target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/arm64/Masonry_vers.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/DerivedSources/Masonry_vers.c normal arm64 c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/arm64/Masonry_vers.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/DerivedSources/Masonry_vers.c normal arm64 c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/DerivedSources/Masonry_vers.c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/module.modulemap","<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--generated-headers>","<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--phase0-copy-headers>","<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/arm64/Masonry_vers.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c","-target","arm64-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=Masonry","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Werror=deprecated-objc-isa-usage","-Werror=objc-root-class","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Masonry-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Masonry-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Masonry-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Masonry-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/arm64/Masonry_vers.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/arm64/Masonry_vers.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/DerivedSources/Masonry_vers.c","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/arm64/Masonry_vers.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/arm64/Masonry_vers.d"],"deps-style":"makefile","signature":"b837e8885b5cba768a8f5638e05e80f8"}
"target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/arm64/NSArray+MASAdditions.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Masonry/Masonry/NSArray+MASAdditions.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/arm64/NSArray+MASAdditions.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Masonry/Masonry/NSArray+MASAdditions.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/Masonry/Masonry-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Masonry/Masonry/NSArray+MASAdditions.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/module.modulemap","<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--generated-headers>","<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--phase0-copy-headers>","<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/arm64/NSArray+MASAdditions.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=Masonry","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Masonry-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Masonry-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Masonry-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Masonry-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/Masonry/Masonry-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/arm64/NSArray+MASAdditions.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/arm64/NSArray+MASAdditions.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Masonry/Masonry/NSArray+MASAdditions.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/arm64/NSArray+MASAdditions.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/arm64/NSArray+MASAdditions.d"],"deps-style":"makefile","signature":"6b1f6784e97298125d5b8f93d8a19702"}
"target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/arm64/NSLayoutConstraint+MASDebugAdditions.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Masonry/Masonry/NSLayoutConstraint+MASDebugAdditions.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/arm64/NSLayoutConstraint+MASDebugAdditions.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Masonry/Masonry/NSLayoutConstraint+MASDebugAdditions.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/Masonry/Masonry-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Masonry/Masonry/NSLayoutConstraint+MASDebugAdditions.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/module.modulemap","<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--generated-headers>","<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--phase0-copy-headers>","<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/arm64/NSLayoutConstraint+MASDebugAdditions.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=Masonry","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Masonry-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Masonry-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Masonry-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Masonry-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/Masonry/Masonry-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/arm64/NSLayoutConstraint+MASDebugAdditions.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/arm64/NSLayoutConstraint+MASDebugAdditions.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Masonry/Masonry/NSLayoutConstraint+MASDebugAdditions.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/arm64/NSLayoutConstraint+MASDebugAdditions.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/arm64/NSLayoutConstraint+MASDebugAdditions.d"],"deps-style":"makefile","signature":"1c9aa4faae195435aa8177ed9eab12fe"}
"target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/arm64/View+MASAdditions.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Masonry/Masonry/View+MASAdditions.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/arm64/View+MASAdditions.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Masonry/Masonry/View+MASAdditions.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/Masonry/Masonry-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Masonry/Masonry/View+MASAdditions.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/module.modulemap","<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--generated-headers>","<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--phase0-copy-headers>","<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/arm64/View+MASAdditions.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=Masonry","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Masonry-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Masonry-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Masonry-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Masonry-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/Masonry/Masonry-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/arm64/View+MASAdditions.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/arm64/View+MASAdditions.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Masonry/Masonry/View+MASAdditions.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/arm64/View+MASAdditions.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/arm64/View+MASAdditions.d"],"deps-style":"makefile","signature":"fa5c6f50a44e05804cb8cdce85407ab6"}
"target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/arm64/ViewController+MASAdditions.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Masonry/Masonry/ViewController+MASAdditions.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/arm64/ViewController+MASAdditions.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Masonry/Masonry/ViewController+MASAdditions.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/Masonry/Masonry-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Masonry/Masonry/ViewController+MASAdditions.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/module.modulemap","<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--generated-headers>","<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--phase0-copy-headers>","<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/arm64/ViewController+MASAdditions.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=Masonry","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Masonry-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Masonry-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Masonry-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Masonry-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/Masonry/Masonry-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/arm64/ViewController+MASAdditions.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/arm64/ViewController+MASAdditions.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Masonry/Masonry/ViewController+MASAdditions.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/arm64/ViewController+MASAdditions.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/arm64/ViewController+MASAdditions.d"],"deps-style":"makefile","signature":"98005584ee69ac2940651e67d2c7bccb"}
"target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/armv7/MASCompositeConstraint.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Masonry/Masonry/MASCompositeConstraint.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/armv7/MASCompositeConstraint.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Masonry/Masonry/MASCompositeConstraint.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/Masonry/Masonry-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Masonry/Masonry/MASCompositeConstraint.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/module.modulemap","<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--generated-headers>","<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--phase0-copy-headers>","<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/armv7/MASCompositeConstraint.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=Masonry","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Masonry-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Masonry-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Masonry-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Masonry-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/Masonry/Masonry-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/armv7/MASCompositeConstraint.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/armv7/MASCompositeConstraint.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Masonry/Masonry/MASCompositeConstraint.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/armv7/MASCompositeConstraint.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/armv7/MASCompositeConstraint.d"],"deps-style":"makefile","signature":"52d3a208258938b595c49b18d6c89ce8"}
"target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/armv7/MASConstraint.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Masonry/Masonry/MASConstraint.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/armv7/MASConstraint.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Masonry/Masonry/MASConstraint.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/Masonry/Masonry-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Masonry/Masonry/MASConstraint.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/module.modulemap","<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--generated-headers>","<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--phase0-copy-headers>","<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/armv7/MASConstraint.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=Masonry","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Masonry-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Masonry-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Masonry-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Masonry-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/Masonry/Masonry-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/armv7/MASConstraint.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/armv7/MASConstraint.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Masonry/Masonry/MASConstraint.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/armv7/MASConstraint.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/armv7/MASConstraint.d"],"deps-style":"makefile","signature":"41f4a950111d399bf4d59e916a4fa174"}
"target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/armv7/MASConstraintMaker.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Masonry/Masonry/MASConstraintMaker.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/armv7/MASConstraintMaker.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Masonry/Masonry/MASConstraintMaker.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/Masonry/Masonry-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Masonry/Masonry/MASConstraintMaker.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/module.modulemap","<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--generated-headers>","<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--phase0-copy-headers>","<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/armv7/MASConstraintMaker.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=Masonry","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Masonry-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Masonry-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Masonry-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Masonry-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/Masonry/Masonry-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/armv7/MASConstraintMaker.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/armv7/MASConstraintMaker.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Masonry/Masonry/MASConstraintMaker.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/armv7/MASConstraintMaker.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/armv7/MASConstraintMaker.d"],"deps-style":"makefile","signature":"f1fee958c2c1b6d1107ece2441e4aeb9"}
"target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/armv7/MASLayoutConstraint.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Masonry/Masonry/MASLayoutConstraint.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/armv7/MASLayoutConstraint.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Masonry/Masonry/MASLayoutConstraint.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/Masonry/Masonry-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Masonry/Masonry/MASLayoutConstraint.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/module.modulemap","<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--generated-headers>","<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--phase0-copy-headers>","<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/armv7/MASLayoutConstraint.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=Masonry","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Masonry-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Masonry-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Masonry-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Masonry-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/Masonry/Masonry-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/armv7/MASLayoutConstraint.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/armv7/MASLayoutConstraint.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Masonry/Masonry/MASLayoutConstraint.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/armv7/MASLayoutConstraint.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/armv7/MASLayoutConstraint.d"],"deps-style":"makefile","signature":"860ad9b72e78ee474a8af5812c9390dc"}
"target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/armv7/MASViewAttribute.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Masonry/Masonry/MASViewAttribute.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/armv7/MASViewAttribute.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Masonry/Masonry/MASViewAttribute.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/Masonry/Masonry-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Masonry/Masonry/MASViewAttribute.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/module.modulemap","<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--generated-headers>","<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--phase0-copy-headers>","<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/armv7/MASViewAttribute.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=Masonry","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Masonry-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Masonry-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Masonry-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Masonry-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/Masonry/Masonry-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/armv7/MASViewAttribute.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/armv7/MASViewAttribute.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Masonry/Masonry/MASViewAttribute.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/armv7/MASViewAttribute.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/armv7/MASViewAttribute.d"],"deps-style":"makefile","signature":"a739398d363d16556d4eabb5ab12de0e"}
"target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/armv7/MASViewConstraint.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Masonry/Masonry/MASViewConstraint.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/armv7/MASViewConstraint.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Masonry/Masonry/MASViewConstraint.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/Masonry/Masonry-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Masonry/Masonry/MASViewConstraint.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/module.modulemap","<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--generated-headers>","<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--phase0-copy-headers>","<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/armv7/MASViewConstraint.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=Masonry","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Masonry-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Masonry-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Masonry-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Masonry-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/Masonry/Masonry-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/armv7/MASViewConstraint.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/armv7/MASViewConstraint.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Masonry/Masonry/MASViewConstraint.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/armv7/MASViewConstraint.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/armv7/MASViewConstraint.d"],"deps-style":"makefile","signature":"ceb547e103a172707b1caff65c5e2d01"}
"target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/armv7/Masonry-dummy.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/Masonry/Masonry-dummy.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/armv7/Masonry-dummy.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/Masonry/Masonry-dummy.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/Masonry/Masonry-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/Masonry/Masonry-dummy.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/module.modulemap","<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--generated-headers>","<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--phase0-copy-headers>","<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/armv7/Masonry-dummy.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=Masonry","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Masonry-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Masonry-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Masonry-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Masonry-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/Masonry/Masonry-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/armv7/Masonry-dummy.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/armv7/Masonry-dummy.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/Masonry/Masonry-dummy.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/armv7/Masonry-dummy.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/armv7/Masonry-dummy.d"],"deps-style":"makefile","signature":"a43894b1fc6714d553f91e19245b8777"}
"target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/armv7/Masonry_vers.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/DerivedSources/Masonry_vers.c normal armv7 c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/armv7/Masonry_vers.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/DerivedSources/Masonry_vers.c normal armv7 c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/DerivedSources/Masonry_vers.c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/module.modulemap","<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--generated-headers>","<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--phase0-copy-headers>","<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/armv7/Masonry_vers.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c","-target","armv7-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=Masonry","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Werror=deprecated-objc-isa-usage","-Werror=objc-root-class","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Masonry-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Masonry-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Masonry-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Masonry-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/armv7/Masonry_vers.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/armv7/Masonry_vers.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/DerivedSources/Masonry_vers.c","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/armv7/Masonry_vers.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/armv7/Masonry_vers.d"],"deps-style":"makefile","signature":"09a734f0b065ea7b2a587d9d7b6ec328"}
"target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/armv7/NSArray+MASAdditions.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Masonry/Masonry/NSArray+MASAdditions.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/armv7/NSArray+MASAdditions.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Masonry/Masonry/NSArray+MASAdditions.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/Masonry/Masonry-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Masonry/Masonry/NSArray+MASAdditions.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/module.modulemap","<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--generated-headers>","<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--phase0-copy-headers>","<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/armv7/NSArray+MASAdditions.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=Masonry","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Masonry-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Masonry-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Masonry-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Masonry-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/Masonry/Masonry-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/armv7/NSArray+MASAdditions.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/armv7/NSArray+MASAdditions.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Masonry/Masonry/NSArray+MASAdditions.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/armv7/NSArray+MASAdditions.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/armv7/NSArray+MASAdditions.d"],"deps-style":"makefile","signature":"33eb96398b6edd89922eafc452b0dee2"}
"target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/armv7/NSLayoutConstraint+MASDebugAdditions.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Masonry/Masonry/NSLayoutConstraint+MASDebugAdditions.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/armv7/NSLayoutConstraint+MASDebugAdditions.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Masonry/Masonry/NSLayoutConstraint+MASDebugAdditions.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/Masonry/Masonry-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Masonry/Masonry/NSLayoutConstraint+MASDebugAdditions.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/module.modulemap","<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--generated-headers>","<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--phase0-copy-headers>","<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/armv7/NSLayoutConstraint+MASDebugAdditions.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=Masonry","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Masonry-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Masonry-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Masonry-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Masonry-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/Masonry/Masonry-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/armv7/NSLayoutConstraint+MASDebugAdditions.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/armv7/NSLayoutConstraint+MASDebugAdditions.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Masonry/Masonry/NSLayoutConstraint+MASDebugAdditions.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/armv7/NSLayoutConstraint+MASDebugAdditions.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/armv7/NSLayoutConstraint+MASDebugAdditions.d"],"deps-style":"makefile","signature":"67ac7cf95919181124cd607dc777c565"}
"target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/armv7/View+MASAdditions.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Masonry/Masonry/View+MASAdditions.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/armv7/View+MASAdditions.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Masonry/Masonry/View+MASAdditions.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/Masonry/Masonry-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Masonry/Masonry/View+MASAdditions.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/module.modulemap","<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--generated-headers>","<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--phase0-copy-headers>","<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/armv7/View+MASAdditions.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=Masonry","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Masonry-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Masonry-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Masonry-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Masonry-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/Masonry/Masonry-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/armv7/View+MASAdditions.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/armv7/View+MASAdditions.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Masonry/Masonry/View+MASAdditions.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/armv7/View+MASAdditions.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/armv7/View+MASAdditions.d"],"deps-style":"makefile","signature":"20c0c5917578b1873033f6b1c23f796b"}
"target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/armv7/ViewController+MASAdditions.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Masonry/Masonry/ViewController+MASAdditions.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/armv7/ViewController+MASAdditions.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Masonry/Masonry/ViewController+MASAdditions.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/Masonry/Masonry-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Masonry/Masonry/ViewController+MASAdditions.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/module.modulemap","<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--generated-headers>","<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--phase0-copy-headers>","<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/armv7/ViewController+MASAdditions.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=Masonry","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Masonry-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Masonry-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Masonry-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Masonry-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/Masonry/Masonry-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/armv7/ViewController+MASAdditions.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/armv7/ViewController+MASAdditions.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Masonry/Masonry/ViewController+MASAdditions.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/armv7/ViewController+MASAdditions.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/armv7/ViewController+MASAdditions.d"],"deps-style":"makefile","signature":"536c74478530b09ad48cedbc38fcd7df"}
"target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Masonry/Masonry/MASCompositeConstraint.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry/Masonry.framework/Headers/MASCompositeConstraint.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Masonry/Masonry/MASCompositeConstraint.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry/Masonry.framework/Headers/MASCompositeConstraint.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Masonry/Masonry/MASCompositeConstraint.h/","<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--HeadermapTaskProducer>","<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry/Masonry.framework/Headers/MASCompositeConstraint.h"]}
"target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Masonry/Masonry/MASConstraint+Private.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry/Masonry.framework/Headers/MASConstraint+Private.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Masonry/Masonry/MASConstraint+Private.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry/Masonry.framework/Headers/MASConstraint+Private.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Masonry/Masonry/MASConstraint+Private.h/","<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--HeadermapTaskProducer>","<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry/Masonry.framework/Headers/MASConstraint+Private.h"]}
"target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Masonry/Masonry/MASConstraint.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry/Masonry.framework/Headers/MASConstraint.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Masonry/Masonry/MASConstraint.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry/Masonry.framework/Headers/MASConstraint.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Masonry/Masonry/MASConstraint.h/","<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--HeadermapTaskProducer>","<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry/Masonry.framework/Headers/MASConstraint.h"]}
"target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Masonry/Masonry/MASConstraintMaker.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry/Masonry.framework/Headers/MASConstraintMaker.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Masonry/Masonry/MASConstraintMaker.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry/Masonry.framework/Headers/MASConstraintMaker.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Masonry/Masonry/MASConstraintMaker.h/","<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--HeadermapTaskProducer>","<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry/Masonry.framework/Headers/MASConstraintMaker.h"]}
"target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Masonry/Masonry/MASLayoutConstraint.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry/Masonry.framework/Headers/MASLayoutConstraint.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Masonry/Masonry/MASLayoutConstraint.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry/Masonry.framework/Headers/MASLayoutConstraint.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Masonry/Masonry/MASLayoutConstraint.h/","<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--HeadermapTaskProducer>","<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry/Masonry.framework/Headers/MASLayoutConstraint.h"]}
"target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Masonry/Masonry/MASUtilities.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry/Masonry.framework/Headers/MASUtilities.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Masonry/Masonry/MASUtilities.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry/Masonry.framework/Headers/MASUtilities.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Masonry/Masonry/MASUtilities.h/","<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--HeadermapTaskProducer>","<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry/Masonry.framework/Headers/MASUtilities.h"]}
"target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Masonry/Masonry/MASViewAttribute.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry/Masonry.framework/Headers/MASViewAttribute.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Masonry/Masonry/MASViewAttribute.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry/Masonry.framework/Headers/MASViewAttribute.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Masonry/Masonry/MASViewAttribute.h/","<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--HeadermapTaskProducer>","<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry/Masonry.framework/Headers/MASViewAttribute.h"]}
"target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Masonry/Masonry/MASViewConstraint.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry/Masonry.framework/Headers/MASViewConstraint.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Masonry/Masonry/MASViewConstraint.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry/Masonry.framework/Headers/MASViewConstraint.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Masonry/Masonry/MASViewConstraint.h/","<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--HeadermapTaskProducer>","<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry/Masonry.framework/Headers/MASViewConstraint.h"]}
"target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Masonry/Masonry/Masonry.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry/Masonry.framework/Headers/Masonry.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Masonry/Masonry/Masonry.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry/Masonry.framework/Headers/Masonry.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Masonry/Masonry/Masonry.h/","<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--HeadermapTaskProducer>","<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry/Masonry.framework/Headers/Masonry.h"]}
"target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Masonry/Masonry/NSArray+MASAdditions.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry/Masonry.framework/Headers/NSArray+MASAdditions.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Masonry/Masonry/NSArray+MASAdditions.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry/Masonry.framework/Headers/NSArray+MASAdditions.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Masonry/Masonry/NSArray+MASAdditions.h/","<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--HeadermapTaskProducer>","<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry/Masonry.framework/Headers/NSArray+MASAdditions.h"]}
"target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Masonry/Masonry/NSArray+MASShorthandAdditions.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry/Masonry.framework/Headers/NSArray+MASShorthandAdditions.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Masonry/Masonry/NSArray+MASShorthandAdditions.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry/Masonry.framework/Headers/NSArray+MASShorthandAdditions.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Masonry/Masonry/NSArray+MASShorthandAdditions.h/","<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--HeadermapTaskProducer>","<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry/Masonry.framework/Headers/NSArray+MASShorthandAdditions.h"]}
"target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Masonry/Masonry/NSLayoutConstraint+MASDebugAdditions.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry/Masonry.framework/Headers/NSLayoutConstraint+MASDebugAdditions.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Masonry/Masonry/NSLayoutConstraint+MASDebugAdditions.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry/Masonry.framework/Headers/NSLayoutConstraint+MASDebugAdditions.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Masonry/Masonry/NSLayoutConstraint+MASDebugAdditions.h/","<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--HeadermapTaskProducer>","<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry/Masonry.framework/Headers/NSLayoutConstraint+MASDebugAdditions.h"]}
"target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Masonry/Masonry/View+MASAdditions.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry/Masonry.framework/Headers/View+MASAdditions.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Masonry/Masonry/View+MASAdditions.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry/Masonry.framework/Headers/View+MASAdditions.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Masonry/Masonry/View+MASAdditions.h/","<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--HeadermapTaskProducer>","<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry/Masonry.framework/Headers/View+MASAdditions.h"]}
"target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Masonry/Masonry/View+MASShorthandAdditions.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry/Masonry.framework/Headers/View+MASShorthandAdditions.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Masonry/Masonry/View+MASShorthandAdditions.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry/Masonry.framework/Headers/View+MASShorthandAdditions.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Masonry/Masonry/View+MASShorthandAdditions.h/","<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--HeadermapTaskProducer>","<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry/Masonry.framework/Headers/View+MASShorthandAdditions.h"]}
"target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Masonry/Masonry/ViewController+MASAdditions.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry/Masonry.framework/Headers/ViewController+MASAdditions.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Masonry/Masonry/ViewController+MASAdditions.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry/Masonry.framework/Headers/ViewController+MASAdditions.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Masonry/Masonry/ViewController+MASAdditions.h/","<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--HeadermapTaskProducer>","<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry/Masonry.framework/Headers/ViewController+MASAdditions.h"]}
"target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/Masonry/Masonry-umbrella.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry/Masonry.framework/Headers/Masonry-umbrella.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/Masonry/Masonry-umbrella.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry/Masonry.framework/Headers/Masonry-umbrella.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/Masonry/Masonry-umbrella.h/","<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--HeadermapTaskProducer>","<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry/Masonry.framework/Headers/Masonry-umbrella.h"]}
"target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5-:Debug:CreateUniversalBinary /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry/Masonry.framework/Masonry normal armv7 arm64": {"tool":"shell","description":"CreateUniversalBinary /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry/Masonry.framework/Masonry normal armv7 arm64","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/armv7/Binary/Masonry","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/arm64/Binary/Masonry","<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--phase0-copy-headers>","<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry/Masonry.framework/Masonry","<Linked Binary /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry/Masonry.framework/Masonry>"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/lipo","-create","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/armv7/Binary/Masonry","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/arm64/Binary/Masonry","-output","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry/Masonry.framework/Masonry"],"env":{},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","signature":"6279d35567987da0ae566d179a118a47"}
"target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5-:Debug:Ditto /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/module.modulemap /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry/Masonry.framework/Modules/module.modulemap": {"tool":"file-copy","description":"Ditto /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/module.modulemap /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry/Masonry.framework/Modules/module.modulemap","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/module.modulemap/","<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--HeadermapTaskProducer>","<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry/Masonry.framework/Modules/module.modulemap"]}
"target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5-:Debug:Ld /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/arm64/Binary/Masonry normal arm64": {"tool":"shell","description":"Ld /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/arm64/Binary/Masonry normal arm64","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/arm64/MASCompositeConstraint.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/arm64/MASConstraint.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/arm64/MASConstraintMaker.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/arm64/MASLayoutConstraint.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/arm64/Masonry-dummy.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/arm64/MASViewAttribute.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/arm64/MASViewConstraint.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/arm64/NSArray+MASAdditions.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/arm64/NSLayoutConstraint+MASDebugAdditions.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/arm64/View+MASAdditions.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/arm64/ViewController+MASAdditions.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/arm64/Masonry_vers.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/arm64/Masonry.LinkFileList","<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--phase0-copy-headers>","<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/arm64/Binary/Masonry"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-target","arm64-apple-ios8.0","-dynamiclib","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-L/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry","-filelist","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/arm64/Masonry.LinkFileList","-install_name","@rpath/Masonry.framework/Masonry","-Xlinker","-rpath","-Xlinker","@executable_path/Frameworks","-Xlinker","-rpath","-Xlinker","@loader_path/Frameworks","-dead_strip","-Xlinker","-object_path_lto","-Xlinker","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/arm64/Masonry_lto.o","-Xlinker","-export_dynamic","-Xlinker","-no_deduplicate","-fembed-bitcode-marker","-fobjc-arc","-fobjc-link-runtime","-framework","Foundation","-framework","UIKit","-framework","Foundation","-framework","UIKit","-compatibility_version","1","-current_version","1","-Xlinker","-dependency_info","-Xlinker","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/arm64/Masonry_dependency_info.dat","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/arm64/Binary/Masonry"],"env":{},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/arm64/Masonry_dependency_info.dat"],"deps-style":"dependency-info","signature":"9870732c0cf639e10dee6b23281859b5"}
"target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5-:Debug:Ld /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/armv7/Binary/Masonry normal armv7": {"tool":"shell","description":"Ld /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/armv7/Binary/Masonry normal armv7","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/armv7/MASCompositeConstraint.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/armv7/MASConstraint.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/armv7/MASConstraintMaker.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/armv7/MASLayoutConstraint.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/armv7/Masonry-dummy.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/armv7/MASViewAttribute.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/armv7/MASViewConstraint.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/armv7/NSArray+MASAdditions.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/armv7/NSLayoutConstraint+MASDebugAdditions.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/armv7/View+MASAdditions.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/armv7/ViewController+MASAdditions.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/armv7/Masonry_vers.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/armv7/Masonry.LinkFileList","<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--phase0-copy-headers>","<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/armv7/Binary/Masonry"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-target","armv7-apple-ios8.0","-dynamiclib","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-L/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry","-filelist","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/armv7/Masonry.LinkFileList","-install_name","@rpath/Masonry.framework/Masonry","-Xlinker","-rpath","-Xlinker","@executable_path/Frameworks","-Xlinker","-rpath","-Xlinker","@loader_path/Frameworks","-dead_strip","-Xlinker","-object_path_lto","-Xlinker","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/armv7/Masonry_lto.o","-Xlinker","-export_dynamic","-Xlinker","-no_deduplicate","-fembed-bitcode-marker","-fobjc-arc","-fobjc-link-runtime","-framework","Foundation","-framework","UIKit","-framework","Foundation","-framework","UIKit","-compatibility_version","1","-current_version","1","-Xlinker","-dependency_info","-Xlinker","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/armv7/Masonry_dependency_info.dat","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/armv7/Binary/Masonry"],"env":{},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/armv7/Masonry_dependency_info.dat"],"deps-style":"dependency-info","signature":"982ecedc03654dafda36b7134f1e1d10"}
"target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5-:Debug:MkDir /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry/Masonry.framework": {"tool":"mkdir","description":"MkDir /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry/Masonry.framework","inputs":["<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--start>","<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry/Masonry.framework","<MkDir /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry/Masonry.framework>"]}
"target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5-:Debug:MkDir /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry/Masonry.framework/Headers": {"tool":"mkdir","description":"MkDir /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry/Masonry.framework/Headers","inputs":["<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--start>","<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry/Masonry.framework/Headers","<MkDir /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry/Masonry.framework/Headers>"]}
"target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5-:Debug:ProcessInfoPlistFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry/Masonry.framework/Info.plist /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/Masonry/Masonry-Info.plist": {"tool":"info-plist-processor","description":"ProcessInfoPlistFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry/Masonry.framework/Info.plist /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/Masonry/Masonry-Info.plist","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/Masonry/Masonry-Info.plist","<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--HeadermapTaskProducer>","<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry/Masonry.framework/Info.plist"]}
"target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5-:Debug:Touch /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry/Masonry.framework": {"tool":"shell","description":"Touch /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry/Masonry.framework","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry/Masonry.framework","<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--Barrier-RegisterExecutionPolicyException>","<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--entry>"],"outputs":["<Touch /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry/Masonry.framework>"],"args":["/usr/bin/touch","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry/Masonry.framework"],"env":{},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","signature":"2fda999f344686cb4958694dac69aa30"}
"target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/DerivedSources/Masonry_vers.c": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/DerivedSources/Masonry_vers.c","inputs":["<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--phase0-copy-headers>","<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/DerivedSources/Masonry_vers.c"]}
"target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Masonry-all-non-framework-target-headers.hmap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Masonry-all-non-framework-target-headers.hmap","inputs":["<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--GeneratedFilesTaskProducer>","<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Masonry-all-non-framework-target-headers.hmap"]}
"target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Masonry-all-target-headers.hmap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Masonry-all-target-headers.hmap","inputs":["<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--GeneratedFilesTaskProducer>","<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Masonry-all-target-headers.hmap"]}
"target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Masonry-generated-files.hmap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Masonry-generated-files.hmap","inputs":["<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--GeneratedFilesTaskProducer>","<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Masonry-generated-files.hmap"]}
"target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Masonry-own-target-headers.hmap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Masonry-own-target-headers.hmap","inputs":["<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--GeneratedFilesTaskProducer>","<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Masonry-own-target-headers.hmap"]}
"target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Masonry-project-headers.hmap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Masonry-project-headers.hmap","inputs":["<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--GeneratedFilesTaskProducer>","<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Masonry-project-headers.hmap"]}
"target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Masonry.hmap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Masonry.hmap","inputs":["<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--GeneratedFilesTaskProducer>","<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Masonry.hmap"]}
"target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/arm64/Masonry.LinkFileList": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/arm64/Masonry.LinkFileList","inputs":["<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--phase0-copy-headers>","<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/arm64/Masonry.LinkFileList"]}
"target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/armv7/Masonry.LinkFileList": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/armv7/Masonry.LinkFileList","inputs":["<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--phase0-copy-headers>","<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/Objects-normal/armv7/Masonry.LinkFileList"]}
"target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/all-product-headers.yaml": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/all-product-headers.yaml","inputs":["<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--GeneratedFilesTaskProducer>","<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/all-product-headers.yaml"]}
"target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/module.modulemap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/module.modulemap","inputs":["<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--HeadermapTaskProducer>","<target-Masonry-285b96a559574e49fe0e1a40c03a5a8ee3be389a010182c334a5c542b48f8dc5--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Masonry.build/module.modulemap"]}
"target-Pods-CNLiveIntegralModule_Example-285b96a559574e49fe0e1a40c03a5a8eed0c33fce09051cbc64ad7bd7697dde1-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Example.build/Objects-normal/arm64/Pods-CNLiveIntegralModule_Example-dummy.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/Pods-CNLiveIntegralModule_Example/Pods-CNLiveIntegralModule_Example-dummy.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Example.build/Objects-normal/arm64/Pods-CNLiveIntegralModule_Example-dummy.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/Pods-CNLiveIntegralModule_Example/Pods-CNLiveIntegralModule_Example-dummy.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/Pods-CNLiveIntegralModule_Example/Pods-CNLiveIntegralModule_Example-dummy.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Example.build/module.modulemap","<target-Pods-CNLiveIntegralModule_Example-285b96a559574e49fe0e1a40c03a5a8eed0c33fce09051cbc64ad7bd7697dde1--generated-headers>","<target-Pods-CNLiveIntegralModule_Example-285b96a559574e49fe0e1a40c03a5a8eed0c33fce09051cbc64ad7bd7697dde1--phase0-copy-headers>","<target-Pods-CNLiveIntegralModule_Example-285b96a559574e49fe0e1a40c03a5a8eed0c33fce09051cbc64ad7bd7697dde1--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Example.build/Objects-normal/arm64/Pods-CNLiveIntegralModule_Example-dummy.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=Pods_CNLiveIntegralModule_Example","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Example.build/Pods_CNLiveIntegralModule_Example-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Example.build/Pods_CNLiveIntegralModule_Example-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Example.build/Pods_CNLiveIntegralModule_Example-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Example.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Example.build/Pods_CNLiveIntegralModule_Example-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking/AFNetworking.framework/Headers","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/CNLiveBaseKit.framework/Headers","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive/CNLiveBeeHive.framework/Headers","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveCommonClass/CNLiveCommonClass.framework/Headers","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveEnvironment/CNLiveEnvironment.framework/Headers","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/CNLiveIntegralModule.framework/Headers","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit/CNLiveRequestBastKit.framework/Headers","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveTripartiteManagement/CNLiveTripartiteManagement.framework/Headers","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserAgreementManager/CNLiveUserAgreementManager.framework/Headers","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserManagement/CNLiveUserManagement.framework/Headers","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension/MJExtension.framework/Headers","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/MJRefresh.framework/Headers","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry/Masonry.framework/Headers","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Headers/Public","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Headers/Public/CNLiveServices","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Example.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Example.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Example.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveCommonClass","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveEnvironment","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveTripartiteManagement","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserAgreementManager","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserManagement","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Example.build/Objects-normal/arm64/Pods-CNLiveIntegralModule_Example-dummy.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Example.build/Objects-normal/arm64/Pods-CNLiveIntegralModule_Example-dummy.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/Pods-CNLiveIntegralModule_Example/Pods-CNLiveIntegralModule_Example-dummy.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Example.build/Objects-normal/arm64/Pods-CNLiveIntegralModule_Example-dummy.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Example.build/Objects-normal/arm64/Pods-CNLiveIntegralModule_Example-dummy.d"],"deps-style":"makefile","signature":"b1b552ac3f727d1867ca84bc53c93d9b"}
"target-Pods-CNLiveIntegralModule_Example-285b96a559574e49fe0e1a40c03a5a8eed0c33fce09051cbc64ad7bd7697dde1-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Example.build/Objects-normal/arm64/Pods_CNLiveIntegralModule_Example_vers.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Example.build/DerivedSources/Pods_CNLiveIntegralModule_Example_vers.c normal arm64 c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Example.build/Objects-normal/arm64/Pods_CNLiveIntegralModule_Example_vers.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Example.build/DerivedSources/Pods_CNLiveIntegralModule_Example_vers.c normal arm64 c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Example.build/DerivedSources/Pods_CNLiveIntegralModule_Example_vers.c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Example.build/module.modulemap","<target-Pods-CNLiveIntegralModule_Example-285b96a559574e49fe0e1a40c03a5a8eed0c33fce09051cbc64ad7bd7697dde1--generated-headers>","<target-Pods-CNLiveIntegralModule_Example-285b96a559574e49fe0e1a40c03a5a8eed0c33fce09051cbc64ad7bd7697dde1--phase0-copy-headers>","<target-Pods-CNLiveIntegralModule_Example-285b96a559574e49fe0e1a40c03a5a8eed0c33fce09051cbc64ad7bd7697dde1--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Example.build/Objects-normal/arm64/Pods_CNLiveIntegralModule_Example_vers.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c","-target","arm64-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=Pods_CNLiveIntegralModule_Example","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Werror=deprecated-objc-isa-usage","-Werror=objc-root-class","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Example.build/Pods_CNLiveIntegralModule_Example-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Example.build/Pods_CNLiveIntegralModule_Example-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Example.build/Pods_CNLiveIntegralModule_Example-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Example.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Example.build/Pods_CNLiveIntegralModule_Example-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking/AFNetworking.framework/Headers","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/CNLiveBaseKit.framework/Headers","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive/CNLiveBeeHive.framework/Headers","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveCommonClass/CNLiveCommonClass.framework/Headers","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveEnvironment/CNLiveEnvironment.framework/Headers","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/CNLiveIntegralModule.framework/Headers","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit/CNLiveRequestBastKit.framework/Headers","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveTripartiteManagement/CNLiveTripartiteManagement.framework/Headers","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserAgreementManager/CNLiveUserAgreementManager.framework/Headers","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserManagement/CNLiveUserManagement.framework/Headers","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension/MJExtension.framework/Headers","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/MJRefresh.framework/Headers","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry/Masonry.framework/Headers","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Headers/Public","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Headers/Public/CNLiveServices","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Example.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Example.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Example.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveCommonClass","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveEnvironment","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveTripartiteManagement","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserAgreementManager","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserManagement","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Example.build/Objects-normal/arm64/Pods_CNLiveIntegralModule_Example_vers.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Example.build/Objects-normal/arm64/Pods_CNLiveIntegralModule_Example_vers.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Example.build/DerivedSources/Pods_CNLiveIntegralModule_Example_vers.c","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Example.build/Objects-normal/arm64/Pods_CNLiveIntegralModule_Example_vers.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Example.build/Objects-normal/arm64/Pods_CNLiveIntegralModule_Example_vers.d"],"deps-style":"makefile","signature":"f60dc56cf0222b36cd0792a892de82f7"}
"target-Pods-CNLiveIntegralModule_Example-285b96a559574e49fe0e1a40c03a5a8eed0c33fce09051cbc64ad7bd7697dde1-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Example.build/Objects-normal/armv7/Pods-CNLiveIntegralModule_Example-dummy.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/Pods-CNLiveIntegralModule_Example/Pods-CNLiveIntegralModule_Example-dummy.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Example.build/Objects-normal/armv7/Pods-CNLiveIntegralModule_Example-dummy.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/Pods-CNLiveIntegralModule_Example/Pods-CNLiveIntegralModule_Example-dummy.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/Pods-CNLiveIntegralModule_Example/Pods-CNLiveIntegralModule_Example-dummy.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Example.build/module.modulemap","<target-Pods-CNLiveIntegralModule_Example-285b96a559574e49fe0e1a40c03a5a8eed0c33fce09051cbc64ad7bd7697dde1--generated-headers>","<target-Pods-CNLiveIntegralModule_Example-285b96a559574e49fe0e1a40c03a5a8eed0c33fce09051cbc64ad7bd7697dde1--phase0-copy-headers>","<target-Pods-CNLiveIntegralModule_Example-285b96a559574e49fe0e1a40c03a5a8eed0c33fce09051cbc64ad7bd7697dde1--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Example.build/Objects-normal/armv7/Pods-CNLiveIntegralModule_Example-dummy.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=Pods_CNLiveIntegralModule_Example","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Example.build/Pods_CNLiveIntegralModule_Example-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Example.build/Pods_CNLiveIntegralModule_Example-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Example.build/Pods_CNLiveIntegralModule_Example-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Example.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Example.build/Pods_CNLiveIntegralModule_Example-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking/AFNetworking.framework/Headers","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/CNLiveBaseKit.framework/Headers","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive/CNLiveBeeHive.framework/Headers","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveCommonClass/CNLiveCommonClass.framework/Headers","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveEnvironment/CNLiveEnvironment.framework/Headers","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/CNLiveIntegralModule.framework/Headers","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit/CNLiveRequestBastKit.framework/Headers","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveTripartiteManagement/CNLiveTripartiteManagement.framework/Headers","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserAgreementManager/CNLiveUserAgreementManager.framework/Headers","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserManagement/CNLiveUserManagement.framework/Headers","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension/MJExtension.framework/Headers","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/MJRefresh.framework/Headers","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry/Masonry.framework/Headers","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Headers/Public","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Headers/Public/CNLiveServices","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Example.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Example.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Example.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveCommonClass","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveEnvironment","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveTripartiteManagement","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserAgreementManager","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserManagement","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Example.build/Objects-normal/armv7/Pods-CNLiveIntegralModule_Example-dummy.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Example.build/Objects-normal/armv7/Pods-CNLiveIntegralModule_Example-dummy.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/Pods-CNLiveIntegralModule_Example/Pods-CNLiveIntegralModule_Example-dummy.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Example.build/Objects-normal/armv7/Pods-CNLiveIntegralModule_Example-dummy.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Example.build/Objects-normal/armv7/Pods-CNLiveIntegralModule_Example-dummy.d"],"deps-style":"makefile","signature":"ba1d0fee2e06799f8b46ba8a82971761"}
"target-Pods-CNLiveIntegralModule_Example-285b96a559574e49fe0e1a40c03a5a8eed0c33fce09051cbc64ad7bd7697dde1-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Example.build/Objects-normal/armv7/Pods_CNLiveIntegralModule_Example_vers.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Example.build/DerivedSources/Pods_CNLiveIntegralModule_Example_vers.c normal armv7 c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Example.build/Objects-normal/armv7/Pods_CNLiveIntegralModule_Example_vers.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Example.build/DerivedSources/Pods_CNLiveIntegralModule_Example_vers.c normal armv7 c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Example.build/DerivedSources/Pods_CNLiveIntegralModule_Example_vers.c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Example.build/module.modulemap","<target-Pods-CNLiveIntegralModule_Example-285b96a559574e49fe0e1a40c03a5a8eed0c33fce09051cbc64ad7bd7697dde1--generated-headers>","<target-Pods-CNLiveIntegralModule_Example-285b96a559574e49fe0e1a40c03a5a8eed0c33fce09051cbc64ad7bd7697dde1--phase0-copy-headers>","<target-Pods-CNLiveIntegralModule_Example-285b96a559574e49fe0e1a40c03a5a8eed0c33fce09051cbc64ad7bd7697dde1--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Example.build/Objects-normal/armv7/Pods_CNLiveIntegralModule_Example_vers.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c","-target","armv7-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=Pods_CNLiveIntegralModule_Example","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Werror=deprecated-objc-isa-usage","-Werror=objc-root-class","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Example.build/Pods_CNLiveIntegralModule_Example-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Example.build/Pods_CNLiveIntegralModule_Example-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Example.build/Pods_CNLiveIntegralModule_Example-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Example.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Example.build/Pods_CNLiveIntegralModule_Example-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking/AFNetworking.framework/Headers","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/CNLiveBaseKit.framework/Headers","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive/CNLiveBeeHive.framework/Headers","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveCommonClass/CNLiveCommonClass.framework/Headers","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveEnvironment/CNLiveEnvironment.framework/Headers","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/CNLiveIntegralModule.framework/Headers","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit/CNLiveRequestBastKit.framework/Headers","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveTripartiteManagement/CNLiveTripartiteManagement.framework/Headers","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserAgreementManager/CNLiveUserAgreementManager.framework/Headers","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserManagement/CNLiveUserManagement.framework/Headers","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension/MJExtension.framework/Headers","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/MJRefresh.framework/Headers","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry/Masonry.framework/Headers","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Headers/Public","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Headers/Public/CNLiveServices","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Example.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Example.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Example.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveCommonClass","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveEnvironment","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveTripartiteManagement","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserAgreementManager","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserManagement","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Example.build/Objects-normal/armv7/Pods_CNLiveIntegralModule_Example_vers.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Example.build/Objects-normal/armv7/Pods_CNLiveIntegralModule_Example_vers.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Example.build/DerivedSources/Pods_CNLiveIntegralModule_Example_vers.c","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Example.build/Objects-normal/armv7/Pods_CNLiveIntegralModule_Example_vers.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Example.build/Objects-normal/armv7/Pods_CNLiveIntegralModule_Example_vers.d"],"deps-style":"makefile","signature":"8c1003ccb4ed09cfbb9207e381cdf006"}
"target-Pods-CNLiveIntegralModule_Example-285b96a559574e49fe0e1a40c03a5a8eed0c33fce09051cbc64ad7bd7697dde1-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/Pods-CNLiveIntegralModule_Example/Pods-CNLiveIntegralModule_Example-umbrella.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Pods_CNLiveIntegralModule_Example.framework/Headers/Pods-CNLiveIntegralModule_Example-umbrella.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/Pods-CNLiveIntegralModule_Example/Pods-CNLiveIntegralModule_Example-umbrella.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Pods_CNLiveIntegralModule_Example.framework/Headers/Pods-CNLiveIntegralModule_Example-umbrella.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/Pods-CNLiveIntegralModule_Example/Pods-CNLiveIntegralModule_Example-umbrella.h/","<target-Pods-CNLiveIntegralModule_Example-285b96a559574e49fe0e1a40c03a5a8eed0c33fce09051cbc64ad7bd7697dde1--HeadermapTaskProducer>","<target-Pods-CNLiveIntegralModule_Example-285b96a559574e49fe0e1a40c03a5a8eed0c33fce09051cbc64ad7bd7697dde1--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Pods_CNLiveIntegralModule_Example.framework/Headers/Pods-CNLiveIntegralModule_Example-umbrella.h"]}
"target-Pods-CNLiveIntegralModule_Example-285b96a559574e49fe0e1a40c03a5a8eed0c33fce09051cbc64ad7bd7697dde1-:Debug:CreateUniversalBinary /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Pods_CNLiveIntegralModule_Example.framework/Pods_CNLiveIntegralModule_Example normal armv7 arm64": {"tool":"shell","description":"CreateUniversalBinary /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Pods_CNLiveIntegralModule_Example.framework/Pods_CNLiveIntegralModule_Example normal armv7 arm64","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Example.build/Objects-normal/armv7/Binary/Pods_CNLiveIntegralModule_Example","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Example.build/Objects-normal/arm64/Binary/Pods_CNLiveIntegralModule_Example","<target-Pods-CNLiveIntegralModule_Example-285b96a559574e49fe0e1a40c03a5a8eed0c33fce09051cbc64ad7bd7697dde1--phase0-copy-headers>","<target-Pods-CNLiveIntegralModule_Example-285b96a559574e49fe0e1a40c03a5a8eed0c33fce09051cbc64ad7bd7697dde1--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Pods_CNLiveIntegralModule_Example.framework/Pods_CNLiveIntegralModule_Example","<Linked Binary /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Pods_CNLiveIntegralModule_Example.framework/Pods_CNLiveIntegralModule_Example>"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/libtool","-static","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Example.build/Objects-normal/armv7/Binary/Pods_CNLiveIntegralModule_Example","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Example.build/Objects-normal/arm64/Binary/Pods_CNLiveIntegralModule_Example","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Pods_CNLiveIntegralModule_Example.framework/Pods_CNLiveIntegralModule_Example"],"env":{},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","signature":"90bb44d30763792fde6460148e5e05ac"}
"target-Pods-CNLiveIntegralModule_Example-285b96a559574e49fe0e1a40c03a5a8eed0c33fce09051cbc64ad7bd7697dde1-:Debug:Ditto /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Example.build/module.modulemap /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Pods_CNLiveIntegralModule_Example.framework/Modules/module.modulemap": {"tool":"file-copy","description":"Ditto /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Example.build/module.modulemap /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Pods_CNLiveIntegralModule_Example.framework/Modules/module.modulemap","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Example.build/module.modulemap/","<target-Pods-CNLiveIntegralModule_Example-285b96a559574e49fe0e1a40c03a5a8eed0c33fce09051cbc64ad7bd7697dde1--HeadermapTaskProducer>","<target-Pods-CNLiveIntegralModule_Example-285b96a559574e49fe0e1a40c03a5a8eed0c33fce09051cbc64ad7bd7697dde1--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Pods_CNLiveIntegralModule_Example.framework/Modules/module.modulemap"]}
"target-Pods-CNLiveIntegralModule_Example-285b96a559574e49fe0e1a40c03a5a8eed0c33fce09051cbc64ad7bd7697dde1-:Debug:Libtool /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Example.build/Objects-normal/arm64/Binary/Pods_CNLiveIntegralModule_Example normal arm64": {"tool":"shell","description":"Libtool /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Example.build/Objects-normal/arm64/Binary/Pods_CNLiveIntegralModule_Example normal arm64","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Example.build/Objects-normal/arm64/Pods-CNLiveIntegralModule_Example-dummy.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Example.build/Objects-normal/arm64/Pods_CNLiveIntegralModule_Example_vers.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Example.build/Objects-normal/arm64/Pods_CNLiveIntegralModule_Example.LinkFileList","<target-Pods-CNLiveIntegralModule_Example-285b96a559574e49fe0e1a40c03a5a8eed0c33fce09051cbc64ad7bd7697dde1--phase0-copy-headers>","<target-Pods-CNLiveIntegralModule_Example-285b96a559574e49fe0e1a40c03a5a8eed0c33fce09051cbc64ad7bd7697dde1--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Example.build/Objects-normal/arm64/Binary/Pods_CNLiveIntegralModule_Example"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/libtool","-static","-arch_only","arm64","-D","-syslibroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-L/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos","-filelist","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Example.build/Objects-normal/arm64/Pods_CNLiveIntegralModule_Example.LinkFileList","-framework","Foundation","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Example.build/Objects-normal/arm64/Binary/Pods_CNLiveIntegralModule_Example"],"env":{"IPHONEOS_DEPLOYMENT_TARGET":"9.0"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","signature":"ca6fa51efeb869508939b2ef6efa1ef3"}
"target-Pods-CNLiveIntegralModule_Example-285b96a559574e49fe0e1a40c03a5a8eed0c33fce09051cbc64ad7bd7697dde1-:Debug:Libtool /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Example.build/Objects-normal/armv7/Binary/Pods_CNLiveIntegralModule_Example normal armv7": {"tool":"shell","description":"Libtool /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Example.build/Objects-normal/armv7/Binary/Pods_CNLiveIntegralModule_Example normal armv7","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Example.build/Objects-normal/armv7/Pods-CNLiveIntegralModule_Example-dummy.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Example.build/Objects-normal/armv7/Pods_CNLiveIntegralModule_Example_vers.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Example.build/Objects-normal/armv7/Pods_CNLiveIntegralModule_Example.LinkFileList","<target-Pods-CNLiveIntegralModule_Example-285b96a559574e49fe0e1a40c03a5a8eed0c33fce09051cbc64ad7bd7697dde1--phase0-copy-headers>","<target-Pods-CNLiveIntegralModule_Example-285b96a559574e49fe0e1a40c03a5a8eed0c33fce09051cbc64ad7bd7697dde1--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Example.build/Objects-normal/armv7/Binary/Pods_CNLiveIntegralModule_Example"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/libtool","-static","-arch_only","armv7","-D","-syslibroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-L/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos","-filelist","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Example.build/Objects-normal/armv7/Pods_CNLiveIntegralModule_Example.LinkFileList","-framework","Foundation","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Example.build/Objects-normal/armv7/Binary/Pods_CNLiveIntegralModule_Example"],"env":{"IPHONEOS_DEPLOYMENT_TARGET":"9.0"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","signature":"d58714b28859723d3807a7bb53676667"}
"target-Pods-CNLiveIntegralModule_Example-285b96a559574e49fe0e1a40c03a5a8eed0c33fce09051cbc64ad7bd7697dde1-:Debug:MkDir /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Pods_CNLiveIntegralModule_Example.framework": {"tool":"mkdir","description":"MkDir /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Pods_CNLiveIntegralModule_Example.framework","inputs":["<target-Pods-CNLiveIntegralModule_Example-285b96a559574e49fe0e1a40c03a5a8eed0c33fce09051cbc64ad7bd7697dde1--start>","<target-Pods-CNLiveIntegralModule_Example-285b96a559574e49fe0e1a40c03a5a8eed0c33fce09051cbc64ad7bd7697dde1--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Pods_CNLiveIntegralModule_Example.framework","<MkDir /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Pods_CNLiveIntegralModule_Example.framework>"]}
"target-Pods-CNLiveIntegralModule_Example-285b96a559574e49fe0e1a40c03a5a8eed0c33fce09051cbc64ad7bd7697dde1-:Debug:MkDir /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Pods_CNLiveIntegralModule_Example.framework/Headers": {"tool":"mkdir","description":"MkDir /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Pods_CNLiveIntegralModule_Example.framework/Headers","inputs":["<target-Pods-CNLiveIntegralModule_Example-285b96a559574e49fe0e1a40c03a5a8eed0c33fce09051cbc64ad7bd7697dde1--start>","<target-Pods-CNLiveIntegralModule_Example-285b96a559574e49fe0e1a40c03a5a8eed0c33fce09051cbc64ad7bd7697dde1--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Pods_CNLiveIntegralModule_Example.framework/Headers","<MkDir /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Pods_CNLiveIntegralModule_Example.framework/Headers>"]}
"target-Pods-CNLiveIntegralModule_Example-285b96a559574e49fe0e1a40c03a5a8eed0c33fce09051cbc64ad7bd7697dde1-:Debug:ProcessInfoPlistFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Pods_CNLiveIntegralModule_Example.framework/Info.plist /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/Pods-CNLiveIntegralModule_Example/Pods-CNLiveIntegralModule_Example-Info.plist": {"tool":"info-plist-processor","description":"ProcessInfoPlistFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Pods_CNLiveIntegralModule_Example.framework/Info.plist /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/Pods-CNLiveIntegralModule_Example/Pods-CNLiveIntegralModule_Example-Info.plist","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/Pods-CNLiveIntegralModule_Example/Pods-CNLiveIntegralModule_Example-Info.plist","<target-Pods-CNLiveIntegralModule_Example-285b96a559574e49fe0e1a40c03a5a8eed0c33fce09051cbc64ad7bd7697dde1--HeadermapTaskProducer>","<target-Pods-CNLiveIntegralModule_Example-285b96a559574e49fe0e1a40c03a5a8eed0c33fce09051cbc64ad7bd7697dde1--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Pods_CNLiveIntegralModule_Example.framework/Info.plist"]}
"target-Pods-CNLiveIntegralModule_Example-285b96a559574e49fe0e1a40c03a5a8eed0c33fce09051cbc64ad7bd7697dde1-:Debug:Touch /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Pods_CNLiveIntegralModule_Example.framework": {"tool":"shell","description":"Touch /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Pods_CNLiveIntegralModule_Example.framework","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Pods_CNLiveIntegralModule_Example.framework","<target-Pods-CNLiveIntegralModule_Example-285b96a559574e49fe0e1a40c03a5a8eed0c33fce09051cbc64ad7bd7697dde1--Barrier-RegisterExecutionPolicyException>","<target-Pods-CNLiveIntegralModule_Example-285b96a559574e49fe0e1a40c03a5a8eed0c33fce09051cbc64ad7bd7697dde1--entry>"],"outputs":["<Touch /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Pods_CNLiveIntegralModule_Example.framework>"],"args":["/usr/bin/touch","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Pods_CNLiveIntegralModule_Example.framework"],"env":{},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","signature":"ba9829c17ee8b8f430a87a65c8de7a0e"}
"target-Pods-CNLiveIntegralModule_Example-285b96a559574e49fe0e1a40c03a5a8eed0c33fce09051cbc64ad7bd7697dde1-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Example.build/DerivedSources/Pods_CNLiveIntegralModule_Example_vers.c": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Example.build/DerivedSources/Pods_CNLiveIntegralModule_Example_vers.c","inputs":["<target-Pods-CNLiveIntegralModule_Example-285b96a559574e49fe0e1a40c03a5a8eed0c33fce09051cbc64ad7bd7697dde1--phase0-copy-headers>","<target-Pods-CNLiveIntegralModule_Example-285b96a559574e49fe0e1a40c03a5a8eed0c33fce09051cbc64ad7bd7697dde1--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Example.build/DerivedSources/Pods_CNLiveIntegralModule_Example_vers.c"]}
"target-Pods-CNLiveIntegralModule_Example-285b96a559574e49fe0e1a40c03a5a8eed0c33fce09051cbc64ad7bd7697dde1-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Example.build/Objects-normal/arm64/Pods_CNLiveIntegralModule_Example.LinkFileList": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Example.build/Objects-normal/arm64/Pods_CNLiveIntegralModule_Example.LinkFileList","inputs":["<target-Pods-CNLiveIntegralModule_Example-285b96a559574e49fe0e1a40c03a5a8eed0c33fce09051cbc64ad7bd7697dde1--phase0-copy-headers>","<target-Pods-CNLiveIntegralModule_Example-285b96a559574e49fe0e1a40c03a5a8eed0c33fce09051cbc64ad7bd7697dde1--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Example.build/Objects-normal/arm64/Pods_CNLiveIntegralModule_Example.LinkFileList"]}
"target-Pods-CNLiveIntegralModule_Example-285b96a559574e49fe0e1a40c03a5a8eed0c33fce09051cbc64ad7bd7697dde1-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Example.build/Objects-normal/armv7/Pods_CNLiveIntegralModule_Example.LinkFileList": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Example.build/Objects-normal/armv7/Pods_CNLiveIntegralModule_Example.LinkFileList","inputs":["<target-Pods-CNLiveIntegralModule_Example-285b96a559574e49fe0e1a40c03a5a8eed0c33fce09051cbc64ad7bd7697dde1--phase0-copy-headers>","<target-Pods-CNLiveIntegralModule_Example-285b96a559574e49fe0e1a40c03a5a8eed0c33fce09051cbc64ad7bd7697dde1--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Example.build/Objects-normal/armv7/Pods_CNLiveIntegralModule_Example.LinkFileList"]}
"target-Pods-CNLiveIntegralModule_Example-285b96a559574e49fe0e1a40c03a5a8eed0c33fce09051cbc64ad7bd7697dde1-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Example.build/Pods_CNLiveIntegralModule_Example-all-non-framework-target-headers.hmap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Example.build/Pods_CNLiveIntegralModule_Example-all-non-framework-target-headers.hmap","inputs":["<target-Pods-CNLiveIntegralModule_Example-285b96a559574e49fe0e1a40c03a5a8eed0c33fce09051cbc64ad7bd7697dde1--GeneratedFilesTaskProducer>","<target-Pods-CNLiveIntegralModule_Example-285b96a559574e49fe0e1a40c03a5a8eed0c33fce09051cbc64ad7bd7697dde1--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Example.build/Pods_CNLiveIntegralModule_Example-all-non-framework-target-headers.hmap"]}
"target-Pods-CNLiveIntegralModule_Example-285b96a559574e49fe0e1a40c03a5a8eed0c33fce09051cbc64ad7bd7697dde1-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Example.build/Pods_CNLiveIntegralModule_Example-all-target-headers.hmap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Example.build/Pods_CNLiveIntegralModule_Example-all-target-headers.hmap","inputs":["<target-Pods-CNLiveIntegralModule_Example-285b96a559574e49fe0e1a40c03a5a8eed0c33fce09051cbc64ad7bd7697dde1--GeneratedFilesTaskProducer>","<target-Pods-CNLiveIntegralModule_Example-285b96a559574e49fe0e1a40c03a5a8eed0c33fce09051cbc64ad7bd7697dde1--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Example.build/Pods_CNLiveIntegralModule_Example-all-target-headers.hmap"]}
"target-Pods-CNLiveIntegralModule_Example-285b96a559574e49fe0e1a40c03a5a8eed0c33fce09051cbc64ad7bd7697dde1-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Example.build/Pods_CNLiveIntegralModule_Example-generated-files.hmap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Example.build/Pods_CNLiveIntegralModule_Example-generated-files.hmap","inputs":["<target-Pods-CNLiveIntegralModule_Example-285b96a559574e49fe0e1a40c03a5a8eed0c33fce09051cbc64ad7bd7697dde1--GeneratedFilesTaskProducer>","<target-Pods-CNLiveIntegralModule_Example-285b96a559574e49fe0e1a40c03a5a8eed0c33fce09051cbc64ad7bd7697dde1--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Example.build/Pods_CNLiveIntegralModule_Example-generated-files.hmap"]}
"target-Pods-CNLiveIntegralModule_Example-285b96a559574e49fe0e1a40c03a5a8eed0c33fce09051cbc64ad7bd7697dde1-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Example.build/Pods_CNLiveIntegralModule_Example-own-target-headers.hmap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Example.build/Pods_CNLiveIntegralModule_Example-own-target-headers.hmap","inputs":["<target-Pods-CNLiveIntegralModule_Example-285b96a559574e49fe0e1a40c03a5a8eed0c33fce09051cbc64ad7bd7697dde1--GeneratedFilesTaskProducer>","<target-Pods-CNLiveIntegralModule_Example-285b96a559574e49fe0e1a40c03a5a8eed0c33fce09051cbc64ad7bd7697dde1--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Example.build/Pods_CNLiveIntegralModule_Example-own-target-headers.hmap"]}
"target-Pods-CNLiveIntegralModule_Example-285b96a559574e49fe0e1a40c03a5a8eed0c33fce09051cbc64ad7bd7697dde1-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Example.build/Pods_CNLiveIntegralModule_Example-project-headers.hmap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Example.build/Pods_CNLiveIntegralModule_Example-project-headers.hmap","inputs":["<target-Pods-CNLiveIntegralModule_Example-285b96a559574e49fe0e1a40c03a5a8eed0c33fce09051cbc64ad7bd7697dde1--GeneratedFilesTaskProducer>","<target-Pods-CNLiveIntegralModule_Example-285b96a559574e49fe0e1a40c03a5a8eed0c33fce09051cbc64ad7bd7697dde1--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Example.build/Pods_CNLiveIntegralModule_Example-project-headers.hmap"]}
"target-Pods-CNLiveIntegralModule_Example-285b96a559574e49fe0e1a40c03a5a8eed0c33fce09051cbc64ad7bd7697dde1-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Example.build/Pods_CNLiveIntegralModule_Example.hmap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Example.build/Pods_CNLiveIntegralModule_Example.hmap","inputs":["<target-Pods-CNLiveIntegralModule_Example-285b96a559574e49fe0e1a40c03a5a8eed0c33fce09051cbc64ad7bd7697dde1--GeneratedFilesTaskProducer>","<target-Pods-CNLiveIntegralModule_Example-285b96a559574e49fe0e1a40c03a5a8eed0c33fce09051cbc64ad7bd7697dde1--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Example.build/Pods_CNLiveIntegralModule_Example.hmap"]}
"target-Pods-CNLiveIntegralModule_Example-285b96a559574e49fe0e1a40c03a5a8eed0c33fce09051cbc64ad7bd7697dde1-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Example.build/all-product-headers.yaml": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Example.build/all-product-headers.yaml","inputs":["<target-Pods-CNLiveIntegralModule_Example-285b96a559574e49fe0e1a40c03a5a8eed0c33fce09051cbc64ad7bd7697dde1--GeneratedFilesTaskProducer>","<target-Pods-CNLiveIntegralModule_Example-285b96a559574e49fe0e1a40c03a5a8eed0c33fce09051cbc64ad7bd7697dde1--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Example.build/all-product-headers.yaml"]}
"target-Pods-CNLiveIntegralModule_Example-285b96a559574e49fe0e1a40c03a5a8eed0c33fce09051cbc64ad7bd7697dde1-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Example.build/module.modulemap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Example.build/module.modulemap","inputs":["<target-Pods-CNLiveIntegralModule_Example-285b96a559574e49fe0e1a40c03a5a8eed0c33fce09051cbc64ad7bd7697dde1--HeadermapTaskProducer>","<target-Pods-CNLiveIntegralModule_Example-285b96a559574e49fe0e1a40c03a5a8eed0c33fce09051cbc64ad7bd7697dde1--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Example.build/module.modulemap"]}
"target-Pods-CNLiveIntegralModule_Tests-285b96a559574e49fe0e1a40c03a5a8e0dc92816745535329b7fd5143160da4d-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Tests.build/Objects-normal/arm64/Pods-CNLiveIntegralModule_Tests-dummy.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/Pods-CNLiveIntegralModule_Tests/Pods-CNLiveIntegralModule_Tests-dummy.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Tests.build/Objects-normal/arm64/Pods-CNLiveIntegralModule_Tests-dummy.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/Pods-CNLiveIntegralModule_Tests/Pods-CNLiveIntegralModule_Tests-dummy.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/Pods-CNLiveIntegralModule_Tests/Pods-CNLiveIntegralModule_Tests-dummy.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Tests.build/module.modulemap","<target-Pods-CNLiveIntegralModule_Tests-285b96a559574e49fe0e1a40c03a5a8e0dc92816745535329b7fd5143160da4d--generated-headers>","<target-Pods-CNLiveIntegralModule_Tests-285b96a559574e49fe0e1a40c03a5a8e0dc92816745535329b7fd5143160da4d--phase0-copy-headers>","<target-Pods-CNLiveIntegralModule_Tests-285b96a559574e49fe0e1a40c03a5a8e0dc92816745535329b7fd5143160da4d--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Tests.build/Objects-normal/arm64/Pods-CNLiveIntegralModule_Tests-dummy.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=Pods_CNLiveIntegralModule_Tests","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Tests.build/Pods_CNLiveIntegralModule_Tests-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Tests.build/Pods_CNLiveIntegralModule_Tests-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Tests.build/Pods_CNLiveIntegralModule_Tests-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Tests.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Tests.build/Pods_CNLiveIntegralModule_Tests-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking/AFNetworking.framework/Headers","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/CNLiveBaseKit.framework/Headers","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive/CNLiveBeeHive.framework/Headers","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveCommonClass/CNLiveCommonClass.framework/Headers","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveEnvironment/CNLiveEnvironment.framework/Headers","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/CNLiveIntegralModule.framework/Headers","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit/CNLiveRequestBastKit.framework/Headers","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveTripartiteManagement/CNLiveTripartiteManagement.framework/Headers","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserAgreementManager/CNLiveUserAgreementManager.framework/Headers","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserManagement/CNLiveUserManagement.framework/Headers","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension/MJExtension.framework/Headers","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/MJRefresh.framework/Headers","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry/Masonry.framework/Headers","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Headers/Public","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Headers/Public/CNLiveServices","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Tests.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Tests.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Tests.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveCommonClass","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveEnvironment","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveTripartiteManagement","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserAgreementManager","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserManagement","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Tests.build/Objects-normal/arm64/Pods-CNLiveIntegralModule_Tests-dummy.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Tests.build/Objects-normal/arm64/Pods-CNLiveIntegralModule_Tests-dummy.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/Pods-CNLiveIntegralModule_Tests/Pods-CNLiveIntegralModule_Tests-dummy.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Tests.build/Objects-normal/arm64/Pods-CNLiveIntegralModule_Tests-dummy.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Tests.build/Objects-normal/arm64/Pods-CNLiveIntegralModule_Tests-dummy.d"],"deps-style":"makefile","signature":"affa1e9de0eb8a485ef14452c19c969c"}
"target-Pods-CNLiveIntegralModule_Tests-285b96a559574e49fe0e1a40c03a5a8e0dc92816745535329b7fd5143160da4d-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Tests.build/Objects-normal/arm64/Pods_CNLiveIntegralModule_Tests_vers.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Tests.build/DerivedSources/Pods_CNLiveIntegralModule_Tests_vers.c normal arm64 c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Tests.build/Objects-normal/arm64/Pods_CNLiveIntegralModule_Tests_vers.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Tests.build/DerivedSources/Pods_CNLiveIntegralModule_Tests_vers.c normal arm64 c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Tests.build/DerivedSources/Pods_CNLiveIntegralModule_Tests_vers.c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Tests.build/module.modulemap","<target-Pods-CNLiveIntegralModule_Tests-285b96a559574e49fe0e1a40c03a5a8e0dc92816745535329b7fd5143160da4d--generated-headers>","<target-Pods-CNLiveIntegralModule_Tests-285b96a559574e49fe0e1a40c03a5a8e0dc92816745535329b7fd5143160da4d--phase0-copy-headers>","<target-Pods-CNLiveIntegralModule_Tests-285b96a559574e49fe0e1a40c03a5a8e0dc92816745535329b7fd5143160da4d--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Tests.build/Objects-normal/arm64/Pods_CNLiveIntegralModule_Tests_vers.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c","-target","arm64-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=Pods_CNLiveIntegralModule_Tests","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Werror=deprecated-objc-isa-usage","-Werror=objc-root-class","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Tests.build/Pods_CNLiveIntegralModule_Tests-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Tests.build/Pods_CNLiveIntegralModule_Tests-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Tests.build/Pods_CNLiveIntegralModule_Tests-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Tests.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Tests.build/Pods_CNLiveIntegralModule_Tests-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking/AFNetworking.framework/Headers","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/CNLiveBaseKit.framework/Headers","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive/CNLiveBeeHive.framework/Headers","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveCommonClass/CNLiveCommonClass.framework/Headers","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveEnvironment/CNLiveEnvironment.framework/Headers","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/CNLiveIntegralModule.framework/Headers","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit/CNLiveRequestBastKit.framework/Headers","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveTripartiteManagement/CNLiveTripartiteManagement.framework/Headers","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserAgreementManager/CNLiveUserAgreementManager.framework/Headers","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserManagement/CNLiveUserManagement.framework/Headers","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension/MJExtension.framework/Headers","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/MJRefresh.framework/Headers","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry/Masonry.framework/Headers","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Headers/Public","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Headers/Public/CNLiveServices","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Tests.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Tests.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Tests.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveCommonClass","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveEnvironment","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveTripartiteManagement","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserAgreementManager","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserManagement","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Tests.build/Objects-normal/arm64/Pods_CNLiveIntegralModule_Tests_vers.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Tests.build/Objects-normal/arm64/Pods_CNLiveIntegralModule_Tests_vers.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Tests.build/DerivedSources/Pods_CNLiveIntegralModule_Tests_vers.c","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Tests.build/Objects-normal/arm64/Pods_CNLiveIntegralModule_Tests_vers.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Tests.build/Objects-normal/arm64/Pods_CNLiveIntegralModule_Tests_vers.d"],"deps-style":"makefile","signature":"b37bbdf5938f73dcdb009e19ced1c89f"}
"target-Pods-CNLiveIntegralModule_Tests-285b96a559574e49fe0e1a40c03a5a8e0dc92816745535329b7fd5143160da4d-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Tests.build/Objects-normal/armv7/Pods-CNLiveIntegralModule_Tests-dummy.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/Pods-CNLiveIntegralModule_Tests/Pods-CNLiveIntegralModule_Tests-dummy.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Tests.build/Objects-normal/armv7/Pods-CNLiveIntegralModule_Tests-dummy.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/Pods-CNLiveIntegralModule_Tests/Pods-CNLiveIntegralModule_Tests-dummy.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/Pods-CNLiveIntegralModule_Tests/Pods-CNLiveIntegralModule_Tests-dummy.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Tests.build/module.modulemap","<target-Pods-CNLiveIntegralModule_Tests-285b96a559574e49fe0e1a40c03a5a8e0dc92816745535329b7fd5143160da4d--generated-headers>","<target-Pods-CNLiveIntegralModule_Tests-285b96a559574e49fe0e1a40c03a5a8e0dc92816745535329b7fd5143160da4d--phase0-copy-headers>","<target-Pods-CNLiveIntegralModule_Tests-285b96a559574e49fe0e1a40c03a5a8e0dc92816745535329b7fd5143160da4d--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Tests.build/Objects-normal/armv7/Pods-CNLiveIntegralModule_Tests-dummy.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=Pods_CNLiveIntegralModule_Tests","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Tests.build/Pods_CNLiveIntegralModule_Tests-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Tests.build/Pods_CNLiveIntegralModule_Tests-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Tests.build/Pods_CNLiveIntegralModule_Tests-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Tests.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Tests.build/Pods_CNLiveIntegralModule_Tests-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking/AFNetworking.framework/Headers","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/CNLiveBaseKit.framework/Headers","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive/CNLiveBeeHive.framework/Headers","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveCommonClass/CNLiveCommonClass.framework/Headers","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveEnvironment/CNLiveEnvironment.framework/Headers","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/CNLiveIntegralModule.framework/Headers","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit/CNLiveRequestBastKit.framework/Headers","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveTripartiteManagement/CNLiveTripartiteManagement.framework/Headers","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserAgreementManager/CNLiveUserAgreementManager.framework/Headers","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserManagement/CNLiveUserManagement.framework/Headers","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension/MJExtension.framework/Headers","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/MJRefresh.framework/Headers","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry/Masonry.framework/Headers","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Headers/Public","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Headers/Public/CNLiveServices","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Tests.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Tests.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Tests.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveCommonClass","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveEnvironment","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveTripartiteManagement","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserAgreementManager","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserManagement","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Tests.build/Objects-normal/armv7/Pods-CNLiveIntegralModule_Tests-dummy.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Tests.build/Objects-normal/armv7/Pods-CNLiveIntegralModule_Tests-dummy.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/Pods-CNLiveIntegralModule_Tests/Pods-CNLiveIntegralModule_Tests-dummy.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Tests.build/Objects-normal/armv7/Pods-CNLiveIntegralModule_Tests-dummy.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Tests.build/Objects-normal/armv7/Pods-CNLiveIntegralModule_Tests-dummy.d"],"deps-style":"makefile","signature":"4d679fc1f9865959822dbeb629521ab4"}
"target-Pods-CNLiveIntegralModule_Tests-285b96a559574e49fe0e1a40c03a5a8e0dc92816745535329b7fd5143160da4d-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Tests.build/Objects-normal/armv7/Pods_CNLiveIntegralModule_Tests_vers.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Tests.build/DerivedSources/Pods_CNLiveIntegralModule_Tests_vers.c normal armv7 c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Tests.build/Objects-normal/armv7/Pods_CNLiveIntegralModule_Tests_vers.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Tests.build/DerivedSources/Pods_CNLiveIntegralModule_Tests_vers.c normal armv7 c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Tests.build/DerivedSources/Pods_CNLiveIntegralModule_Tests_vers.c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Tests.build/module.modulemap","<target-Pods-CNLiveIntegralModule_Tests-285b96a559574e49fe0e1a40c03a5a8e0dc92816745535329b7fd5143160da4d--generated-headers>","<target-Pods-CNLiveIntegralModule_Tests-285b96a559574e49fe0e1a40c03a5a8e0dc92816745535329b7fd5143160da4d--phase0-copy-headers>","<target-Pods-CNLiveIntegralModule_Tests-285b96a559574e49fe0e1a40c03a5a8e0dc92816745535329b7fd5143160da4d--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Tests.build/Objects-normal/armv7/Pods_CNLiveIntegralModule_Tests_vers.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c","-target","armv7-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=Pods_CNLiveIntegralModule_Tests","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Werror=deprecated-objc-isa-usage","-Werror=objc-root-class","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Tests.build/Pods_CNLiveIntegralModule_Tests-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Tests.build/Pods_CNLiveIntegralModule_Tests-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Tests.build/Pods_CNLiveIntegralModule_Tests-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Tests.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Tests.build/Pods_CNLiveIntegralModule_Tests-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking/AFNetworking.framework/Headers","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit/CNLiveBaseKit.framework/Headers","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive/CNLiveBeeHive.framework/Headers","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveCommonClass/CNLiveCommonClass.framework/Headers","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveEnvironment/CNLiveEnvironment.framework/Headers","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule/CNLiveIntegralModule.framework/Headers","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit/CNLiveRequestBastKit.framework/Headers","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveTripartiteManagement/CNLiveTripartiteManagement.framework/Headers","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserAgreementManager/CNLiveUserAgreementManager.framework/Headers","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserManagement/CNLiveUserManagement.framework/Headers","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension/MJExtension.framework/Headers","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh/MJRefresh.framework/Headers","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry/Masonry.framework/Headers","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Headers/Public","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Headers/Public/CNLiveServices","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Tests.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Tests.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Tests.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/AFNetworking","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBaseKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveBeeHive","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveCommonClass","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveEnvironment","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveIntegralModule","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveRequestBastKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveTripartiteManagement","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserAgreementManager","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/CNLiveUserManagement","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJExtension","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/MJRefresh","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Masonry","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Tests.build/Objects-normal/armv7/Pods_CNLiveIntegralModule_Tests_vers.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Tests.build/Objects-normal/armv7/Pods_CNLiveIntegralModule_Tests_vers.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Tests.build/DerivedSources/Pods_CNLiveIntegralModule_Tests_vers.c","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Tests.build/Objects-normal/armv7/Pods_CNLiveIntegralModule_Tests_vers.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Tests.build/Objects-normal/armv7/Pods_CNLiveIntegralModule_Tests_vers.d"],"deps-style":"makefile","signature":"27a944201e25562fb9ab29df5659ddf9"}
"target-Pods-CNLiveIntegralModule_Tests-285b96a559574e49fe0e1a40c03a5a8e0dc92816745535329b7fd5143160da4d-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/Pods-CNLiveIntegralModule_Tests/Pods-CNLiveIntegralModule_Tests-umbrella.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Pods_CNLiveIntegralModule_Tests.framework/Headers/Pods-CNLiveIntegralModule_Tests-umbrella.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/Pods-CNLiveIntegralModule_Tests/Pods-CNLiveIntegralModule_Tests-umbrella.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Pods_CNLiveIntegralModule_Tests.framework/Headers/Pods-CNLiveIntegralModule_Tests-umbrella.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/Pods-CNLiveIntegralModule_Tests/Pods-CNLiveIntegralModule_Tests-umbrella.h/","<target-Pods-CNLiveIntegralModule_Tests-285b96a559574e49fe0e1a40c03a5a8e0dc92816745535329b7fd5143160da4d--HeadermapTaskProducer>","<target-Pods-CNLiveIntegralModule_Tests-285b96a559574e49fe0e1a40c03a5a8e0dc92816745535329b7fd5143160da4d--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Pods_CNLiveIntegralModule_Tests.framework/Headers/Pods-CNLiveIntegralModule_Tests-umbrella.h"]}
"target-Pods-CNLiveIntegralModule_Tests-285b96a559574e49fe0e1a40c03a5a8e0dc92816745535329b7fd5143160da4d-:Debug:CreateUniversalBinary /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Pods_CNLiveIntegralModule_Tests.framework/Pods_CNLiveIntegralModule_Tests normal armv7 arm64": {"tool":"shell","description":"CreateUniversalBinary /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Pods_CNLiveIntegralModule_Tests.framework/Pods_CNLiveIntegralModule_Tests normal armv7 arm64","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Tests.build/Objects-normal/armv7/Binary/Pods_CNLiveIntegralModule_Tests","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Tests.build/Objects-normal/arm64/Binary/Pods_CNLiveIntegralModule_Tests","<target-Pods-CNLiveIntegralModule_Tests-285b96a559574e49fe0e1a40c03a5a8e0dc92816745535329b7fd5143160da4d--phase0-copy-headers>","<target-Pods-CNLiveIntegralModule_Tests-285b96a559574e49fe0e1a40c03a5a8e0dc92816745535329b7fd5143160da4d--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Pods_CNLiveIntegralModule_Tests.framework/Pods_CNLiveIntegralModule_Tests","<Linked Binary /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Pods_CNLiveIntegralModule_Tests.framework/Pods_CNLiveIntegralModule_Tests>"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/libtool","-static","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Tests.build/Objects-normal/armv7/Binary/Pods_CNLiveIntegralModule_Tests","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Tests.build/Objects-normal/arm64/Binary/Pods_CNLiveIntegralModule_Tests","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Pods_CNLiveIntegralModule_Tests.framework/Pods_CNLiveIntegralModule_Tests"],"env":{},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","signature":"b42c072023bc592df5fe566e782d1fd8"}
"target-Pods-CNLiveIntegralModule_Tests-285b96a559574e49fe0e1a40c03a5a8e0dc92816745535329b7fd5143160da4d-:Debug:Ditto /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Tests.build/module.modulemap /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Pods_CNLiveIntegralModule_Tests.framework/Modules/module.modulemap": {"tool":"file-copy","description":"Ditto /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Tests.build/module.modulemap /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Pods_CNLiveIntegralModule_Tests.framework/Modules/module.modulemap","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Tests.build/module.modulemap/","<target-Pods-CNLiveIntegralModule_Tests-285b96a559574e49fe0e1a40c03a5a8e0dc92816745535329b7fd5143160da4d--HeadermapTaskProducer>","<target-Pods-CNLiveIntegralModule_Tests-285b96a559574e49fe0e1a40c03a5a8e0dc92816745535329b7fd5143160da4d--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Pods_CNLiveIntegralModule_Tests.framework/Modules/module.modulemap"]}
"target-Pods-CNLiveIntegralModule_Tests-285b96a559574e49fe0e1a40c03a5a8e0dc92816745535329b7fd5143160da4d-:Debug:Libtool /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Tests.build/Objects-normal/arm64/Binary/Pods_CNLiveIntegralModule_Tests normal arm64": {"tool":"shell","description":"Libtool /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Tests.build/Objects-normal/arm64/Binary/Pods_CNLiveIntegralModule_Tests normal arm64","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Tests.build/Objects-normal/arm64/Pods-CNLiveIntegralModule_Tests-dummy.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Tests.build/Objects-normal/arm64/Pods_CNLiveIntegralModule_Tests_vers.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Tests.build/Objects-normal/arm64/Pods_CNLiveIntegralModule_Tests.LinkFileList","<target-Pods-CNLiveIntegralModule_Tests-285b96a559574e49fe0e1a40c03a5a8e0dc92816745535329b7fd5143160da4d--phase0-copy-headers>","<target-Pods-CNLiveIntegralModule_Tests-285b96a559574e49fe0e1a40c03a5a8e0dc92816745535329b7fd5143160da4d--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Tests.build/Objects-normal/arm64/Binary/Pods_CNLiveIntegralModule_Tests"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/libtool","-static","-arch_only","arm64","-D","-syslibroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-L/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos","-filelist","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Tests.build/Objects-normal/arm64/Pods_CNLiveIntegralModule_Tests.LinkFileList","-framework","Foundation","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Tests.build/Objects-normal/arm64/Binary/Pods_CNLiveIntegralModule_Tests"],"env":{"IPHONEOS_DEPLOYMENT_TARGET":"9.0"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","signature":"6f134e47f192334ad729cdf82b077870"}
"target-Pods-CNLiveIntegralModule_Tests-285b96a559574e49fe0e1a40c03a5a8e0dc92816745535329b7fd5143160da4d-:Debug:Libtool /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Tests.build/Objects-normal/armv7/Binary/Pods_CNLiveIntegralModule_Tests normal armv7": {"tool":"shell","description":"Libtool /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Tests.build/Objects-normal/armv7/Binary/Pods_CNLiveIntegralModule_Tests normal armv7","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Tests.build/Objects-normal/armv7/Pods-CNLiveIntegralModule_Tests-dummy.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Tests.build/Objects-normal/armv7/Pods_CNLiveIntegralModule_Tests_vers.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Tests.build/Objects-normal/armv7/Pods_CNLiveIntegralModule_Tests.LinkFileList","<target-Pods-CNLiveIntegralModule_Tests-285b96a559574e49fe0e1a40c03a5a8e0dc92816745535329b7fd5143160da4d--phase0-copy-headers>","<target-Pods-CNLiveIntegralModule_Tests-285b96a559574e49fe0e1a40c03a5a8e0dc92816745535329b7fd5143160da4d--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Tests.build/Objects-normal/armv7/Binary/Pods_CNLiveIntegralModule_Tests"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/libtool","-static","-arch_only","armv7","-D","-syslibroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-L/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos","-filelist","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Tests.build/Objects-normal/armv7/Pods_CNLiveIntegralModule_Tests.LinkFileList","-framework","Foundation","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Tests.build/Objects-normal/armv7/Binary/Pods_CNLiveIntegralModule_Tests"],"env":{"IPHONEOS_DEPLOYMENT_TARGET":"9.0"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","signature":"522b9b1152b10dfae055396ea35231b1"}
"target-Pods-CNLiveIntegralModule_Tests-285b96a559574e49fe0e1a40c03a5a8e0dc92816745535329b7fd5143160da4d-:Debug:MkDir /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Pods_CNLiveIntegralModule_Tests.framework": {"tool":"mkdir","description":"MkDir /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Pods_CNLiveIntegralModule_Tests.framework","inputs":["<target-Pods-CNLiveIntegralModule_Tests-285b96a559574e49fe0e1a40c03a5a8e0dc92816745535329b7fd5143160da4d--start>","<target-Pods-CNLiveIntegralModule_Tests-285b96a559574e49fe0e1a40c03a5a8e0dc92816745535329b7fd5143160da4d--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Pods_CNLiveIntegralModule_Tests.framework","<MkDir /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Pods_CNLiveIntegralModule_Tests.framework>"]}
"target-Pods-CNLiveIntegralModule_Tests-285b96a559574e49fe0e1a40c03a5a8e0dc92816745535329b7fd5143160da4d-:Debug:MkDir /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Pods_CNLiveIntegralModule_Tests.framework/Headers": {"tool":"mkdir","description":"MkDir /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Pods_CNLiveIntegralModule_Tests.framework/Headers","inputs":["<target-Pods-CNLiveIntegralModule_Tests-285b96a559574e49fe0e1a40c03a5a8e0dc92816745535329b7fd5143160da4d--start>","<target-Pods-CNLiveIntegralModule_Tests-285b96a559574e49fe0e1a40c03a5a8e0dc92816745535329b7fd5143160da4d--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Pods_CNLiveIntegralModule_Tests.framework/Headers","<MkDir /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Pods_CNLiveIntegralModule_Tests.framework/Headers>"]}
"target-Pods-CNLiveIntegralModule_Tests-285b96a559574e49fe0e1a40c03a5a8e0dc92816745535329b7fd5143160da4d-:Debug:ProcessInfoPlistFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Pods_CNLiveIntegralModule_Tests.framework/Info.plist /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/Pods-CNLiveIntegralModule_Tests/Pods-CNLiveIntegralModule_Tests-Info.plist": {"tool":"info-plist-processor","description":"ProcessInfoPlistFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Pods_CNLiveIntegralModule_Tests.framework/Info.plist /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/Pods-CNLiveIntegralModule_Tests/Pods-CNLiveIntegralModule_Tests-Info.plist","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/Pods-CNLiveIntegralModule_Tests/Pods-CNLiveIntegralModule_Tests-Info.plist","<target-Pods-CNLiveIntegralModule_Tests-285b96a559574e49fe0e1a40c03a5a8e0dc92816745535329b7fd5143160da4d--HeadermapTaskProducer>","<target-Pods-CNLiveIntegralModule_Tests-285b96a559574e49fe0e1a40c03a5a8e0dc92816745535329b7fd5143160da4d--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Pods_CNLiveIntegralModule_Tests.framework/Info.plist"]}
"target-Pods-CNLiveIntegralModule_Tests-285b96a559574e49fe0e1a40c03a5a8e0dc92816745535329b7fd5143160da4d-:Debug:Touch /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Pods_CNLiveIntegralModule_Tests.framework": {"tool":"shell","description":"Touch /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Pods_CNLiveIntegralModule_Tests.framework","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Pods_CNLiveIntegralModule_Tests.framework","<target-Pods-CNLiveIntegralModule_Tests-285b96a559574e49fe0e1a40c03a5a8e0dc92816745535329b7fd5143160da4d--Barrier-RegisterExecutionPolicyException>","<target-Pods-CNLiveIntegralModule_Tests-285b96a559574e49fe0e1a40c03a5a8e0dc92816745535329b7fd5143160da4d--entry>"],"outputs":["<Touch /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Pods_CNLiveIntegralModule_Tests.framework>"],"args":["/usr/bin/touch","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/Pods_CNLiveIntegralModule_Tests.framework"],"env":{},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","signature":"18b79f12169687130b2e5c40b09a5323"}
"target-Pods-CNLiveIntegralModule_Tests-285b96a559574e49fe0e1a40c03a5a8e0dc92816745535329b7fd5143160da4d-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Tests.build/DerivedSources/Pods_CNLiveIntegralModule_Tests_vers.c": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Tests.build/DerivedSources/Pods_CNLiveIntegralModule_Tests_vers.c","inputs":["<target-Pods-CNLiveIntegralModule_Tests-285b96a559574e49fe0e1a40c03a5a8e0dc92816745535329b7fd5143160da4d--phase0-copy-headers>","<target-Pods-CNLiveIntegralModule_Tests-285b96a559574e49fe0e1a40c03a5a8e0dc92816745535329b7fd5143160da4d--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Tests.build/DerivedSources/Pods_CNLiveIntegralModule_Tests_vers.c"]}
"target-Pods-CNLiveIntegralModule_Tests-285b96a559574e49fe0e1a40c03a5a8e0dc92816745535329b7fd5143160da4d-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Tests.build/Objects-normal/arm64/Pods_CNLiveIntegralModule_Tests.LinkFileList": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Tests.build/Objects-normal/arm64/Pods_CNLiveIntegralModule_Tests.LinkFileList","inputs":["<target-Pods-CNLiveIntegralModule_Tests-285b96a559574e49fe0e1a40c03a5a8e0dc92816745535329b7fd5143160da4d--phase0-copy-headers>","<target-Pods-CNLiveIntegralModule_Tests-285b96a559574e49fe0e1a40c03a5a8e0dc92816745535329b7fd5143160da4d--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Tests.build/Objects-normal/arm64/Pods_CNLiveIntegralModule_Tests.LinkFileList"]}
"target-Pods-CNLiveIntegralModule_Tests-285b96a559574e49fe0e1a40c03a5a8e0dc92816745535329b7fd5143160da4d-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Tests.build/Objects-normal/armv7/Pods_CNLiveIntegralModule_Tests.LinkFileList": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Tests.build/Objects-normal/armv7/Pods_CNLiveIntegralModule_Tests.LinkFileList","inputs":["<target-Pods-CNLiveIntegralModule_Tests-285b96a559574e49fe0e1a40c03a5a8e0dc92816745535329b7fd5143160da4d--phase0-copy-headers>","<target-Pods-CNLiveIntegralModule_Tests-285b96a559574e49fe0e1a40c03a5a8e0dc92816745535329b7fd5143160da4d--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Tests.build/Objects-normal/armv7/Pods_CNLiveIntegralModule_Tests.LinkFileList"]}
"target-Pods-CNLiveIntegralModule_Tests-285b96a559574e49fe0e1a40c03a5a8e0dc92816745535329b7fd5143160da4d-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Tests.build/Pods_CNLiveIntegralModule_Tests-all-non-framework-target-headers.hmap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Tests.build/Pods_CNLiveIntegralModule_Tests-all-non-framework-target-headers.hmap","inputs":["<target-Pods-CNLiveIntegralModule_Tests-285b96a559574e49fe0e1a40c03a5a8e0dc92816745535329b7fd5143160da4d--GeneratedFilesTaskProducer>","<target-Pods-CNLiveIntegralModule_Tests-285b96a559574e49fe0e1a40c03a5a8e0dc92816745535329b7fd5143160da4d--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Tests.build/Pods_CNLiveIntegralModule_Tests-all-non-framework-target-headers.hmap"]}
"target-Pods-CNLiveIntegralModule_Tests-285b96a559574e49fe0e1a40c03a5a8e0dc92816745535329b7fd5143160da4d-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Tests.build/Pods_CNLiveIntegralModule_Tests-all-target-headers.hmap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Tests.build/Pods_CNLiveIntegralModule_Tests-all-target-headers.hmap","inputs":["<target-Pods-CNLiveIntegralModule_Tests-285b96a559574e49fe0e1a40c03a5a8e0dc92816745535329b7fd5143160da4d--GeneratedFilesTaskProducer>","<target-Pods-CNLiveIntegralModule_Tests-285b96a559574e49fe0e1a40c03a5a8e0dc92816745535329b7fd5143160da4d--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Tests.build/Pods_CNLiveIntegralModule_Tests-all-target-headers.hmap"]}
"target-Pods-CNLiveIntegralModule_Tests-285b96a559574e49fe0e1a40c03a5a8e0dc92816745535329b7fd5143160da4d-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Tests.build/Pods_CNLiveIntegralModule_Tests-generated-files.hmap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Tests.build/Pods_CNLiveIntegralModule_Tests-generated-files.hmap","inputs":["<target-Pods-CNLiveIntegralModule_Tests-285b96a559574e49fe0e1a40c03a5a8e0dc92816745535329b7fd5143160da4d--GeneratedFilesTaskProducer>","<target-Pods-CNLiveIntegralModule_Tests-285b96a559574e49fe0e1a40c03a5a8e0dc92816745535329b7fd5143160da4d--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Tests.build/Pods_CNLiveIntegralModule_Tests-generated-files.hmap"]}
"target-Pods-CNLiveIntegralModule_Tests-285b96a559574e49fe0e1a40c03a5a8e0dc92816745535329b7fd5143160da4d-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Tests.build/Pods_CNLiveIntegralModule_Tests-own-target-headers.hmap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Tests.build/Pods_CNLiveIntegralModule_Tests-own-target-headers.hmap","inputs":["<target-Pods-CNLiveIntegralModule_Tests-285b96a559574e49fe0e1a40c03a5a8e0dc92816745535329b7fd5143160da4d--GeneratedFilesTaskProducer>","<target-Pods-CNLiveIntegralModule_Tests-285b96a559574e49fe0e1a40c03a5a8e0dc92816745535329b7fd5143160da4d--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Tests.build/Pods_CNLiveIntegralModule_Tests-own-target-headers.hmap"]}
"target-Pods-CNLiveIntegralModule_Tests-285b96a559574e49fe0e1a40c03a5a8e0dc92816745535329b7fd5143160da4d-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Tests.build/Pods_CNLiveIntegralModule_Tests-project-headers.hmap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Tests.build/Pods_CNLiveIntegralModule_Tests-project-headers.hmap","inputs":["<target-Pods-CNLiveIntegralModule_Tests-285b96a559574e49fe0e1a40c03a5a8e0dc92816745535329b7fd5143160da4d--GeneratedFilesTaskProducer>","<target-Pods-CNLiveIntegralModule_Tests-285b96a559574e49fe0e1a40c03a5a8e0dc92816745535329b7fd5143160da4d--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Tests.build/Pods_CNLiveIntegralModule_Tests-project-headers.hmap"]}
"target-Pods-CNLiveIntegralModule_Tests-285b96a559574e49fe0e1a40c03a5a8e0dc92816745535329b7fd5143160da4d-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Tests.build/Pods_CNLiveIntegralModule_Tests.hmap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Tests.build/Pods_CNLiveIntegralModule_Tests.hmap","inputs":["<target-Pods-CNLiveIntegralModule_Tests-285b96a559574e49fe0e1a40c03a5a8e0dc92816745535329b7fd5143160da4d--GeneratedFilesTaskProducer>","<target-Pods-CNLiveIntegralModule_Tests-285b96a559574e49fe0e1a40c03a5a8e0dc92816745535329b7fd5143160da4d--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Tests.build/Pods_CNLiveIntegralModule_Tests.hmap"]}
"target-Pods-CNLiveIntegralModule_Tests-285b96a559574e49fe0e1a40c03a5a8e0dc92816745535329b7fd5143160da4d-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Tests.build/all-product-headers.yaml": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Tests.build/all-product-headers.yaml","inputs":["<target-Pods-CNLiveIntegralModule_Tests-285b96a559574e49fe0e1a40c03a5a8e0dc92816745535329b7fd5143160da4d--GeneratedFilesTaskProducer>","<target-Pods-CNLiveIntegralModule_Tests-285b96a559574e49fe0e1a40c03a5a8e0dc92816745535329b7fd5143160da4d--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Tests.build/all-product-headers.yaml"]}
"target-Pods-CNLiveIntegralModule_Tests-285b96a559574e49fe0e1a40c03a5a8e0dc92816745535329b7fd5143160da4d-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Tests.build/module.modulemap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Tests.build/module.modulemap","inputs":["<target-Pods-CNLiveIntegralModule_Tests-285b96a559574e49fe0e1a40c03a5a8e0dc92816745535329b7fd5143160da4d--HeadermapTaskProducer>","<target-Pods-CNLiveIntegralModule_Tests-285b96a559574e49fe0e1a40c03a5a8e0dc92816745535329b7fd5143160da4d--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/Pods-CNLiveIntegralModule_Tests.build/module.modulemap"]}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileAssetCatalog /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIResources/Images.xcassets": {"tool":"shell","description":"CompileAssetCatalog /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIResources/Images.xcassets","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIResources/Images.xcassets/","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase1-compile-sources>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/assetcatalog_generated_info.plist","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Assets.car"],"args":["/Applications/Xcode.app/Contents/Developer/usr/bin/actool","--output-format","human-readable-text","--notices","--warnings","--export-dependency-info","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/assetcatalog_dependencies","--output-partial-info-plist","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/assetcatalog_generated_info.plist","--compress-pngs","--enable-on-demand-resources","NO","--sticker-pack-identifier-prefix","org.cocoapods.QMUIKit.sticker-pack.","--development-region","en","--target-device","iphone","--target-device","ipad","--minimum-deployment-target","9.0","--platform","iphoneos","--product-type","com.apple.product-type.framework","--compile","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIResources/Images.xcassets"],"env":{},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","control-enabled":false,"deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/assetcatalog_dependencies"],"deps-style":"dependency-info","signature":"a23d04e3b4437bb7f1567ea89931fb79"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/CAAnimation+QMUI.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/CAAnimation+QMUI.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/CAAnimation+QMUI.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/CAAnimation+QMUI.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/CAAnimation+QMUI.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/CAAnimation+QMUI.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/CAAnimation+QMUI.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/CAAnimation+QMUI.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/CAAnimation+QMUI.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/CAAnimation+QMUI.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/CAAnimation+QMUI.d"],"deps-style":"makefile","signature":"a73ab551f7af036f8d10069f1547ec58"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/CALayer+QMUI.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/CALayer+QMUI.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/CALayer+QMUI.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/CALayer+QMUI.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/CALayer+QMUI.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/CALayer+QMUI.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/CALayer+QMUI.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/CALayer+QMUI.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/CALayer+QMUI.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/CALayer+QMUI.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/CALayer+QMUI.d"],"deps-style":"makefile","signature":"307e6489be80161b4eeda98553ae68c0"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/NSArray+QMUI.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/NSArray+QMUI.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/NSArray+QMUI.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/NSArray+QMUI.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/NSArray+QMUI.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/NSArray+QMUI.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/NSArray+QMUI.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/NSArray+QMUI.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/NSArray+QMUI.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/NSArray+QMUI.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/NSArray+QMUI.d"],"deps-style":"makefile","signature":"32df4c504e0a26ca0630346faa425ddc"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/NSAttributedString+QMUI.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/NSAttributedString+QMUI.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/NSAttributedString+QMUI.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/NSAttributedString+QMUI.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/NSAttributedString+QMUI.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/NSAttributedString+QMUI.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/NSAttributedString+QMUI.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/NSAttributedString+QMUI.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/NSAttributedString+QMUI.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/NSAttributedString+QMUI.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/NSAttributedString+QMUI.d"],"deps-style":"makefile","signature":"7a91dadcafbd4beb5db7df6b49fb142b"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/NSCharacterSet+QMUI.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/NSCharacterSet+QMUI.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/NSCharacterSet+QMUI.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/NSCharacterSet+QMUI.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/NSCharacterSet+QMUI.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/NSCharacterSet+QMUI.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/NSCharacterSet+QMUI.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/NSCharacterSet+QMUI.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/NSCharacterSet+QMUI.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/NSCharacterSet+QMUI.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/NSCharacterSet+QMUI.d"],"deps-style":"makefile","signature":"9ec97c23e6b145c30b4df2330727473c"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/NSMethodSignature+QMUI.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/NSMethodSignature+QMUI.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/NSMethodSignature+QMUI.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/NSMethodSignature+QMUI.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/NSMethodSignature+QMUI.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/NSMethodSignature+QMUI.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/NSMethodSignature+QMUI.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/NSMethodSignature+QMUI.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/NSMethodSignature+QMUI.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/NSMethodSignature+QMUI.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/NSMethodSignature+QMUI.d"],"deps-style":"makefile","signature":"b095fad4f88fe293cbd9ff276f3f6a59"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/NSNumber+QMUI.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/NSNumber+QMUI.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/NSNumber+QMUI.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/NSNumber+QMUI.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/NSNumber+QMUI.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/NSNumber+QMUI.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/NSNumber+QMUI.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/NSNumber+QMUI.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/NSNumber+QMUI.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/NSNumber+QMUI.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/NSNumber+QMUI.d"],"deps-style":"makefile","signature":"62c932e8a278abc136e5c8eec3633cd7"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/NSObject+QMUI.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/NSObject+QMUI.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/NSObject+QMUI.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/NSObject+QMUI.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/NSObject+QMUI.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/NSObject+QMUI.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/NSObject+QMUI.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/NSObject+QMUI.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/NSObject+QMUI.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/NSObject+QMUI.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/NSObject+QMUI.d"],"deps-style":"makefile","signature":"9ce24103cfce86a575e2b8aafcb22857"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/NSObject+QMUIMultipleDelegates.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIMultipleDelegates/NSObject+QMUIMultipleDelegates.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/NSObject+QMUIMultipleDelegates.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIMultipleDelegates/NSObject+QMUIMultipleDelegates.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIMultipleDelegates/NSObject+QMUIMultipleDelegates.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/NSObject+QMUIMultipleDelegates.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/NSObject+QMUIMultipleDelegates.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/NSObject+QMUIMultipleDelegates.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIMultipleDelegates/NSObject+QMUIMultipleDelegates.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/NSObject+QMUIMultipleDelegates.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/NSObject+QMUIMultipleDelegates.d"],"deps-style":"makefile","signature":"3831e2200ddf45339c0b07fd4d136b74"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/NSParagraphStyle+QMUI.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/NSParagraphStyle+QMUI.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/NSParagraphStyle+QMUI.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/NSParagraphStyle+QMUI.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/NSParagraphStyle+QMUI.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/NSParagraphStyle+QMUI.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/NSParagraphStyle+QMUI.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/NSParagraphStyle+QMUI.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/NSParagraphStyle+QMUI.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/NSParagraphStyle+QMUI.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/NSParagraphStyle+QMUI.d"],"deps-style":"makefile","signature":"20e55084ac1c224ea71b9d7d9a459dd3"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/NSPointerArray+QMUI.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/NSPointerArray+QMUI.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/NSPointerArray+QMUI.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/NSPointerArray+QMUI.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/NSPointerArray+QMUI.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/NSPointerArray+QMUI.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/NSPointerArray+QMUI.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/NSPointerArray+QMUI.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/NSPointerArray+QMUI.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/NSPointerArray+QMUI.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/NSPointerArray+QMUI.d"],"deps-style":"makefile","signature":"d656c02a2ac2d38cf50cbfba968283bb"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/NSString+QMUI.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/NSString+QMUI.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/NSString+QMUI.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/NSString+QMUI.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/NSString+QMUI.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/NSString+QMUI.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/NSString+QMUI.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/NSString+QMUI.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/NSString+QMUI.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/NSString+QMUI.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/NSString+QMUI.d"],"deps-style":"makefile","signature":"19acdb623ebd73de10f9cd1b129d47b8"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/NSURL+QMUI.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/NSURL+QMUI.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/NSURL+QMUI.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/NSURL+QMUI.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/NSURL+QMUI.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/NSURL+QMUI.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/NSURL+QMUI.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/NSURL+QMUI.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/NSURL+QMUI.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/NSURL+QMUI.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/NSURL+QMUI.d"],"deps-style":"makefile","signature":"9d12179b75b5c4bc4be69db85172f480"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIAlbumViewController.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/ImagePickerLibrary/QMUIAlbumViewController.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIAlbumViewController.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/ImagePickerLibrary/QMUIAlbumViewController.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/ImagePickerLibrary/QMUIAlbumViewController.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIAlbumViewController.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIAlbumViewController.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIAlbumViewController.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/ImagePickerLibrary/QMUIAlbumViewController.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIAlbumViewController.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIAlbumViewController.d"],"deps-style":"makefile","signature":"ee76e6948e8ad3a50f3a17fe86aea0b0"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIAlertController.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIAlertController.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIAlertController.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIAlertController.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIAlertController.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIAlertController.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIAlertController.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIAlertController.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIAlertController.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIAlertController.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIAlertController.d"],"deps-style":"makefile","signature":"f1e13a307b74d17bbd99358e5d9c3d91"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIAnimationHelper.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIAnimation/QMUIAnimationHelper.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIAnimationHelper.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIAnimation/QMUIAnimationHelper.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIAnimation/QMUIAnimationHelper.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIAnimationHelper.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIAnimationHelper.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIAnimationHelper.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIAnimation/QMUIAnimationHelper.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIAnimationHelper.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIAnimationHelper.d"],"deps-style":"makefile","signature":"fd18c015b384cd8f342ca2723090da67"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIAsset.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/AssetLibrary/QMUIAsset.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIAsset.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/AssetLibrary/QMUIAsset.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/AssetLibrary/QMUIAsset.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIAsset.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIAsset.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIAsset.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/AssetLibrary/QMUIAsset.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIAsset.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIAsset.d"],"deps-style":"makefile","signature":"b5d1057ea2a16c24e1169f12ebe86178"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIAssetsGroup.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/AssetLibrary/QMUIAssetsGroup.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIAssetsGroup.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/AssetLibrary/QMUIAssetsGroup.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/AssetLibrary/QMUIAssetsGroup.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIAssetsGroup.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIAssetsGroup.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIAssetsGroup.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/AssetLibrary/QMUIAssetsGroup.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIAssetsGroup.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIAssetsGroup.d"],"deps-style":"makefile","signature":"cb78d4a264ed7be663934d5da30885ab"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIAssetsManager.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/AssetLibrary/QMUIAssetsManager.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIAssetsManager.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/AssetLibrary/QMUIAssetsManager.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/AssetLibrary/QMUIAssetsManager.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIAssetsManager.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIAssetsManager.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIAssetsManager.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/AssetLibrary/QMUIAssetsManager.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIAssetsManager.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIAssetsManager.d"],"deps-style":"makefile","signature":"069b148d79a4a5ba0913f5aa98ec0ba8"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIButton.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIButton/QMUIButton.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIButton.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIButton/QMUIButton.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIButton/QMUIButton.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIButton.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIButton.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIButton.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIButton/QMUIButton.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIButton.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIButton.d"],"deps-style":"makefile","signature":"a4b477c2c4957c8132bde55e1b6b1ade"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUICellHeightCache.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUICellHeightCache.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUICellHeightCache.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUICellHeightCache.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUICellHeightCache.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUICellHeightCache.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUICellHeightCache.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUICellHeightCache.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUICellHeightCache.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUICellHeightCache.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUICellHeightCache.d"],"deps-style":"makefile","signature":"3903e4c1e4b01fe973fabd68ebf9c089"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUICellHeightKeyCache.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUICellHeightKeyCache/QMUICellHeightKeyCache.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUICellHeightKeyCache.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUICellHeightKeyCache/QMUICellHeightKeyCache.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUICellHeightKeyCache/QMUICellHeightKeyCache.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUICellHeightKeyCache.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUICellHeightKeyCache.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUICellHeightKeyCache.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUICellHeightKeyCache/QMUICellHeightKeyCache.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUICellHeightKeyCache.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUICellHeightKeyCache.d"],"deps-style":"makefile","signature":"eb4b44eee3bd9ba9e6512c3216eda8ea"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUICellSizeKeyCache.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUICellSizeKeyCache/QMUICellSizeKeyCache.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUICellSizeKeyCache.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUICellSizeKeyCache/QMUICellSizeKeyCache.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUICellSizeKeyCache/QMUICellSizeKeyCache.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUICellSizeKeyCache.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUICellSizeKeyCache.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUICellSizeKeyCache.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUICellSizeKeyCache/QMUICellSizeKeyCache.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUICellSizeKeyCache.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUICellSizeKeyCache.d"],"deps-style":"makefile","signature":"4f48b14ec5c502a9447a2a0d01c2e97a"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUICollectionViewPagingLayout.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUICollectionViewPagingLayout.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUICollectionViewPagingLayout.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUICollectionViewPagingLayout.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUICollectionViewPagingLayout.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUICollectionViewPagingLayout.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUICollectionViewPagingLayout.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUICollectionViewPagingLayout.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUICollectionViewPagingLayout.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUICollectionViewPagingLayout.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUICollectionViewPagingLayout.d"],"deps-style":"makefile","signature":"02f9addf87590669206ab3be79cd4237"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUICommonTableViewController.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIMainFrame/QMUICommonTableViewController.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUICommonTableViewController.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIMainFrame/QMUICommonTableViewController.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIMainFrame/QMUICommonTableViewController.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUICommonTableViewController.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUICommonTableViewController.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUICommonTableViewController.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIMainFrame/QMUICommonTableViewController.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUICommonTableViewController.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUICommonTableViewController.d"],"deps-style":"makefile","signature":"5373b3c3e6b5e772ab05c39539c0d746"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUICommonViewController.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIMainFrame/QMUICommonViewController.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUICommonViewController.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIMainFrame/QMUICommonViewController.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIMainFrame/QMUICommonViewController.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUICommonViewController.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUICommonViewController.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUICommonViewController.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIMainFrame/QMUICommonViewController.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUICommonViewController.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUICommonViewController.d"],"deps-style":"makefile","signature":"a7df907e78f73c8cc6af155d6eb276df"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIConfiguration.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUICore/QMUIConfiguration.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIConfiguration.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUICore/QMUIConfiguration.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUICore/QMUIConfiguration.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIConfiguration.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIConfiguration.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIConfiguration.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUICore/QMUIConfiguration.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIConfiguration.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIConfiguration.d"],"deps-style":"makefile","signature":"2e3c6a4335c3078a2b97c921837a63f9"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIConsole.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIConsole/QMUIConsole.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIConsole.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIConsole/QMUIConsole.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIConsole/QMUIConsole.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIConsole.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIConsole.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIConsole.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIConsole/QMUIConsole.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIConsole.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIConsole.d"],"deps-style":"makefile","signature":"c0a0b1765af53d3522a1915201d77b74"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIConsoleToolbar.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIConsole/QMUIConsoleToolbar.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIConsoleToolbar.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIConsole/QMUIConsoleToolbar.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIConsole/QMUIConsoleToolbar.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIConsoleToolbar.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIConsoleToolbar.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIConsoleToolbar.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIConsole/QMUIConsoleToolbar.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIConsoleToolbar.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIConsoleToolbar.d"],"deps-style":"makefile","signature":"c6f954f730e44f2042a54acc5069abd9"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIConsoleViewController.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIConsole/QMUIConsoleViewController.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIConsoleViewController.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIConsole/QMUIConsoleViewController.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIConsole/QMUIConsoleViewController.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIConsoleViewController.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIConsoleViewController.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIConsoleViewController.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIConsole/QMUIConsoleViewController.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIConsoleViewController.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIConsoleViewController.d"],"deps-style":"makefile","signature":"98a15685753d36a9631af1349bf449ad"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIDialogViewController.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIDialogViewController.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIDialogViewController.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIDialogViewController.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIDialogViewController.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIDialogViewController.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIDialogViewController.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIDialogViewController.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIDialogViewController.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIDialogViewController.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIDialogViewController.d"],"deps-style":"makefile","signature":"f653a8cd40811ca198edd604859de90e"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIDisplayLinkAnimation.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIAnimation/QMUIDisplayLinkAnimation.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIDisplayLinkAnimation.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIAnimation/QMUIDisplayLinkAnimation.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIAnimation/QMUIDisplayLinkAnimation.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIDisplayLinkAnimation.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIDisplayLinkAnimation.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIDisplayLinkAnimation.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIAnimation/QMUIDisplayLinkAnimation.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIDisplayLinkAnimation.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIDisplayLinkAnimation.d"],"deps-style":"makefile","signature":"a15fc6b7ff0750b0e86f6f387059240a"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIEmotionInputManager.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIEmotionInputManager.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIEmotionInputManager.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIEmotionInputManager.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIEmotionInputManager.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIEmotionInputManager.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIEmotionInputManager.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIEmotionInputManager.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIEmotionInputManager.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIEmotionInputManager.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIEmotionInputManager.d"],"deps-style":"makefile","signature":"f3cf44ed1e6e0cb297a78ec57b0518ea"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIEmotionView.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIEmotionView.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIEmotionView.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIEmotionView.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIEmotionView.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIEmotionView.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIEmotionView.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIEmotionView.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIEmotionView.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIEmotionView.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIEmotionView.d"],"deps-style":"makefile","signature":"a9652437fe36ec9c1bbf1a739a3a7f08"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIEmptyView.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIEmptyView.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIEmptyView.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIEmptyView.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIEmptyView.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIEmptyView.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIEmptyView.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIEmptyView.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIEmptyView.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIEmptyView.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIEmptyView.d"],"deps-style":"makefile","signature":"46aaaf40c64c5c18d4225a96344f1beb"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIFillButton.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIButton/QMUIFillButton.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIFillButton.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIButton/QMUIFillButton.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIButton/QMUIFillButton.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIFillButton.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIFillButton.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIFillButton.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIButton/QMUIFillButton.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIFillButton.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIFillButton.d"],"deps-style":"makefile","signature":"360c4186acf7f8fc0454c185c7b7f92c"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIFloatLayoutView.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIFloatLayoutView.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIFloatLayoutView.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIFloatLayoutView.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIFloatLayoutView.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIFloatLayoutView.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIFloatLayoutView.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIFloatLayoutView.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIFloatLayoutView.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIFloatLayoutView.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIFloatLayoutView.d"],"deps-style":"makefile","signature":"1875d62290d1012b82bacfe72cd7ebb8"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIGhostButton.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIButton/QMUIGhostButton.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIGhostButton.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIButton/QMUIGhostButton.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIButton/QMUIGhostButton.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIGhostButton.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIGhostButton.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIGhostButton.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIButton/QMUIGhostButton.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIGhostButton.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIGhostButton.d"],"deps-style":"makefile","signature":"74c887b9ae969cc7032a262a3d799a71"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIGridView.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIGridView.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIGridView.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIGridView.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIGridView.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIGridView.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIGridView.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIGridView.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIGridView.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIGridView.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIGridView.d"],"deps-style":"makefile","signature":"d8ad0628bfe730503dfe8f369008921f"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIHelper.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUICore/QMUIHelper.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIHelper.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUICore/QMUIHelper.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUICore/QMUIHelper.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIHelper.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIHelper.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIHelper.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUICore/QMUIHelper.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIHelper.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIHelper.d"],"deps-style":"makefile","signature":"8e4d1c58a7fb57222f415f61c0d7b581"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIImagePickerCollectionViewCell.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/ImagePickerLibrary/QMUIImagePickerCollectionViewCell.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIImagePickerCollectionViewCell.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/ImagePickerLibrary/QMUIImagePickerCollectionViewCell.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/ImagePickerLibrary/QMUIImagePickerCollectionViewCell.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIImagePickerCollectionViewCell.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIImagePickerCollectionViewCell.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIImagePickerCollectionViewCell.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/ImagePickerLibrary/QMUIImagePickerCollectionViewCell.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIImagePickerCollectionViewCell.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIImagePickerCollectionViewCell.d"],"deps-style":"makefile","signature":"242f3d7aa68e3d490cc1dadfbae35d3c"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIImagePickerHelper.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/ImagePickerLibrary/QMUIImagePickerHelper.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIImagePickerHelper.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/ImagePickerLibrary/QMUIImagePickerHelper.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/ImagePickerLibrary/QMUIImagePickerHelper.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIImagePickerHelper.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIImagePickerHelper.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIImagePickerHelper.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/ImagePickerLibrary/QMUIImagePickerHelper.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIImagePickerHelper.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIImagePickerHelper.d"],"deps-style":"makefile","signature":"5fd2037335bbc1e0352551267f80d5e9"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIImagePickerPreviewViewController.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/ImagePickerLibrary/QMUIImagePickerPreviewViewController.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIImagePickerPreviewViewController.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/ImagePickerLibrary/QMUIImagePickerPreviewViewController.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/ImagePickerLibrary/QMUIImagePickerPreviewViewController.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIImagePickerPreviewViewController.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIImagePickerPreviewViewController.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIImagePickerPreviewViewController.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/ImagePickerLibrary/QMUIImagePickerPreviewViewController.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIImagePickerPreviewViewController.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIImagePickerPreviewViewController.d"],"deps-style":"makefile","signature":"f2f86af5f71202b3d11aecd56bdd4491"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIImagePickerViewController.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/ImagePickerLibrary/QMUIImagePickerViewController.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIImagePickerViewController.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/ImagePickerLibrary/QMUIImagePickerViewController.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/ImagePickerLibrary/QMUIImagePickerViewController.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIImagePickerViewController.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIImagePickerViewController.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIImagePickerViewController.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/ImagePickerLibrary/QMUIImagePickerViewController.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIImagePickerViewController.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIImagePickerViewController.d"],"deps-style":"makefile","signature":"16decfced41125bfe10ec3603737c26e"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIImagePreviewView.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIImagePreviewView/QMUIImagePreviewView.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIImagePreviewView.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIImagePreviewView/QMUIImagePreviewView.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIImagePreviewView/QMUIImagePreviewView.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIImagePreviewView.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIImagePreviewView.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIImagePreviewView.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIImagePreviewView/QMUIImagePreviewView.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIImagePreviewView.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIImagePreviewView.d"],"deps-style":"makefile","signature":"99abb80d84c65338a6f720a97819e05b"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIImagePreviewViewController.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIImagePreviewView/QMUIImagePreviewViewController.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIImagePreviewViewController.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIImagePreviewView/QMUIImagePreviewViewController.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIImagePreviewView/QMUIImagePreviewViewController.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIImagePreviewViewController.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIImagePreviewViewController.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIImagePreviewViewController.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIImagePreviewView/QMUIImagePreviewViewController.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIImagePreviewViewController.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIImagePreviewViewController.d"],"deps-style":"makefile","signature":"763f5cbeaba1927161c09a5d504e6489"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIImagePreviewViewTransitionAnimator.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIImagePreviewView/QMUIImagePreviewViewTransitionAnimator.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIImagePreviewViewTransitionAnimator.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIImagePreviewView/QMUIImagePreviewViewTransitionAnimator.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIImagePreviewView/QMUIImagePreviewViewTransitionAnimator.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIImagePreviewViewTransitionAnimator.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIImagePreviewViewTransitionAnimator.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIImagePreviewViewTransitionAnimator.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIImagePreviewView/QMUIImagePreviewViewTransitionAnimator.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIImagePreviewViewTransitionAnimator.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIImagePreviewViewTransitionAnimator.d"],"deps-style":"makefile","signature":"e8f52168ee001f86928ee423b8c70d79"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIKeyboardManager.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIKeyboardManager.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIKeyboardManager.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIKeyboardManager.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIKeyboardManager.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIKeyboardManager.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIKeyboardManager.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIKeyboardManager.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIKeyboardManager.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIKeyboardManager.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIKeyboardManager.d"],"deps-style":"makefile","signature":"878ba0cb9a7e8b1f5b3ebfd7204750df"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIKit-dummy.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-dummy.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIKit-dummy.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-dummy.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-dummy.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIKit-dummy.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIKit-dummy.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIKit-dummy.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-dummy.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIKit-dummy.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIKit-dummy.d"],"deps-style":"makefile","signature":"0a40b15b88bb4ae6a88663ac28d3a0a2"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIKit_vers.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/QMUIKit_vers.c normal arm64 c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIKit_vers.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/QMUIKit_vers.c normal arm64 c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/QMUIKit_vers.c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIKit_vers.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c","-target","arm64-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Werror=deprecated-objc-isa-usage","-Werror=objc-root-class","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIKit_vers.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIKit_vers.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/QMUIKit_vers.c","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIKit_vers.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIKit_vers.d"],"deps-style":"makefile","signature":"c1a7329186d5bc6f64dcd46cb93d7e32"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUILabel.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUILabel.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUILabel.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUILabel.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUILabel.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUILabel.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUILabel.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUILabel.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUILabel.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUILabel.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUILabel.d"],"deps-style":"makefile","signature":"65fda91a87d9f93b95ecaaafa63dd008"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUILinkButton.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIButton/QMUILinkButton.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUILinkButton.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIButton/QMUILinkButton.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIButton/QMUILinkButton.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUILinkButton.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUILinkButton.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUILinkButton.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIButton/QMUILinkButton.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUILinkButton.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUILinkButton.d"],"deps-style":"makefile","signature":"8374cd4d93d5959b482536f117ed86b1"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUILog+QMUIConsole.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIConsole/QMUILog+QMUIConsole.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUILog+QMUIConsole.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIConsole/QMUILog+QMUIConsole.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIConsole/QMUILog+QMUIConsole.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUILog+QMUIConsole.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUILog+QMUIConsole.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUILog+QMUIConsole.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIConsole/QMUILog+QMUIConsole.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUILog+QMUIConsole.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUILog+QMUIConsole.d"],"deps-style":"makefile","signature":"eb089128c7e565c72d85b98e4405affa"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUILogItem.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUILog/QMUILogItem.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUILogItem.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUILog/QMUILogItem.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUILog/QMUILogItem.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUILogItem.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUILogItem.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUILogItem.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUILog/QMUILogItem.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUILogItem.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUILogItem.d"],"deps-style":"makefile","signature":"b8bedbf258e55fcd1dcee7b1163ca015"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUILogManagerViewController.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUILogManagerViewController.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUILogManagerViewController.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUILogManagerViewController.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUILogManagerViewController.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUILogManagerViewController.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUILogManagerViewController.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUILogManagerViewController.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUILogManagerViewController.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUILogManagerViewController.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUILogManagerViewController.d"],"deps-style":"makefile","signature":"9260b4b469a1b890ed79999d6b5e0128"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUILogNameManager.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUILog/QMUILogNameManager.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUILogNameManager.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUILog/QMUILogNameManager.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUILog/QMUILogNameManager.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUILogNameManager.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUILogNameManager.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUILogNameManager.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUILog/QMUILogNameManager.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUILogNameManager.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUILogNameManager.d"],"deps-style":"makefile","signature":"a802715f34bea2338f34cabcb9185d7e"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUILogger+QMUIConfigurationTemplate.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUILogger+QMUIConfigurationTemplate.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUILogger+QMUIConfigurationTemplate.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUILogger+QMUIConfigurationTemplate.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUILogger+QMUIConfigurationTemplate.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUILogger+QMUIConfigurationTemplate.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUILogger+QMUIConfigurationTemplate.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUILogger+QMUIConfigurationTemplate.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUILogger+QMUIConfigurationTemplate.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUILogger+QMUIConfigurationTemplate.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUILogger+QMUIConfigurationTemplate.d"],"deps-style":"makefile","signature":"a10a18b616eaa1562e35d42660bc3527"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUILogger.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUILog/QMUILogger.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUILogger.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUILog/QMUILogger.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUILog/QMUILogger.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUILogger.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUILogger.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUILogger.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUILog/QMUILogger.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUILogger.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUILogger.d"],"deps-style":"makefile","signature":"cb7d7d2931240e4ea066aac5fed1ecf1"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIMarqueeLabel.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIMarqueeLabel.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIMarqueeLabel.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIMarqueeLabel.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIMarqueeLabel.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIMarqueeLabel.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIMarqueeLabel.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIMarqueeLabel.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIMarqueeLabel.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIMarqueeLabel.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIMarqueeLabel.d"],"deps-style":"makefile","signature":"e31fe39e6cda7c29cddce18eda70886a"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIModalPresentationViewController.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIModalPresentationViewController.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIModalPresentationViewController.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIModalPresentationViewController.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIModalPresentationViewController.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIModalPresentationViewController.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIModalPresentationViewController.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIModalPresentationViewController.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIModalPresentationViewController.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIModalPresentationViewController.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIModalPresentationViewController.d"],"deps-style":"makefile","signature":"6b8cc812bb8dcd1bb64ab68fe144aa54"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIMoreOperationController.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIMoreOperationController.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIMoreOperationController.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIMoreOperationController.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIMoreOperationController.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIMoreOperationController.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIMoreOperationController.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIMoreOperationController.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIMoreOperationController.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIMoreOperationController.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIMoreOperationController.d"],"deps-style":"makefile","signature":"cd1543ff143502a9d3ba2f34fd149b39"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIMultipleDelegates.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIMultipleDelegates/QMUIMultipleDelegates.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIMultipleDelegates.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIMultipleDelegates/QMUIMultipleDelegates.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIMultipleDelegates/QMUIMultipleDelegates.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIMultipleDelegates.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIMultipleDelegates.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIMultipleDelegates.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIMultipleDelegates/QMUIMultipleDelegates.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIMultipleDelegates.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIMultipleDelegates.d"],"deps-style":"makefile","signature":"405d351bb5a316e5c33957d32961ad64"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUINavigationBarScrollingAnimator.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIScrollAnimator/QMUINavigationBarScrollingAnimator.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUINavigationBarScrollingAnimator.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIScrollAnimator/QMUINavigationBarScrollingAnimator.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIScrollAnimator/QMUINavigationBarScrollingAnimator.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUINavigationBarScrollingAnimator.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUINavigationBarScrollingAnimator.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUINavigationBarScrollingAnimator.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIScrollAnimator/QMUINavigationBarScrollingAnimator.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUINavigationBarScrollingAnimator.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUINavigationBarScrollingAnimator.d"],"deps-style":"makefile","signature":"195200733de20a6218043cf2e3b83ef4"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUINavigationBarScrollingSnapAnimator.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIScrollAnimator/QMUINavigationBarScrollingSnapAnimator.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUINavigationBarScrollingSnapAnimator.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIScrollAnimator/QMUINavigationBarScrollingSnapAnimator.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIScrollAnimator/QMUINavigationBarScrollingSnapAnimator.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUINavigationBarScrollingSnapAnimator.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUINavigationBarScrollingSnapAnimator.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUINavigationBarScrollingSnapAnimator.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIScrollAnimator/QMUINavigationBarScrollingSnapAnimator.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUINavigationBarScrollingSnapAnimator.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUINavigationBarScrollingSnapAnimator.d"],"deps-style":"makefile","signature":"c7a9f1f8c05779210d7506ed3fe5ed8d"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUINavigationButton.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIButton/QMUINavigationButton.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUINavigationButton.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIButton/QMUINavigationButton.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIButton/QMUINavigationButton.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUINavigationButton.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUINavigationButton.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUINavigationButton.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIButton/QMUINavigationButton.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUINavigationButton.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUINavigationButton.d"],"deps-style":"makefile","signature":"cd244f40059f7a0ed6aca600e714d0e2"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUINavigationController.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIMainFrame/QMUINavigationController.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUINavigationController.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIMainFrame/QMUINavigationController.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIMainFrame/QMUINavigationController.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUINavigationController.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUINavigationController.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUINavigationController.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIMainFrame/QMUINavigationController.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUINavigationController.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUINavigationController.d"],"deps-style":"makefile","signature":"04927be0ba53f29f3dcb0cb27ae8aa63"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUINavigationTitleView.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUINavigationTitleView.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUINavigationTitleView.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUINavigationTitleView.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUINavigationTitleView.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUINavigationTitleView.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUINavigationTitleView.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUINavigationTitleView.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUINavigationTitleView.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUINavigationTitleView.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUINavigationTitleView.d"],"deps-style":"makefile","signature":"e910c0c21398fcbe33fec5d796c14ac9"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIOrderedDictionary.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIOrderedDictionary.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIOrderedDictionary.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIOrderedDictionary.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIOrderedDictionary.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIOrderedDictionary.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIOrderedDictionary.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIOrderedDictionary.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIOrderedDictionary.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIOrderedDictionary.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIOrderedDictionary.d"],"deps-style":"makefile","signature":"efd113b7aef4f9d2e28342c99656179b"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIPieProgressView.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIPieProgressView.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIPieProgressView.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIPieProgressView.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIPieProgressView.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIPieProgressView.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIPieProgressView.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIPieProgressView.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIPieProgressView.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIPieProgressView.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIPieProgressView.d"],"deps-style":"makefile","signature":"9560047536921621acf186d08cb77e06"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIPopupContainerView.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIPopupContainerView.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIPopupContainerView.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIPopupContainerView.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIPopupContainerView.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIPopupContainerView.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIPopupContainerView.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIPopupContainerView.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIPopupContainerView.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIPopupContainerView.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIPopupContainerView.d"],"deps-style":"makefile","signature":"2119386e55e8cdae3e7bf7a4c376aebe"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIPopupMenuBaseItem.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIPopupMenuView/QMUIPopupMenuBaseItem.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIPopupMenuBaseItem.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIPopupMenuView/QMUIPopupMenuBaseItem.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIPopupMenuView/QMUIPopupMenuBaseItem.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIPopupMenuBaseItem.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIPopupMenuBaseItem.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIPopupMenuBaseItem.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIPopupMenuView/QMUIPopupMenuBaseItem.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIPopupMenuBaseItem.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIPopupMenuBaseItem.d"],"deps-style":"makefile","signature":"e11502eab1604630e73a7f32e9c59133"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIPopupMenuButtonItem.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIPopupMenuView/QMUIPopupMenuButtonItem.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIPopupMenuButtonItem.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIPopupMenuView/QMUIPopupMenuButtonItem.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIPopupMenuView/QMUIPopupMenuButtonItem.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIPopupMenuButtonItem.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIPopupMenuButtonItem.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIPopupMenuButtonItem.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIPopupMenuView/QMUIPopupMenuButtonItem.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIPopupMenuButtonItem.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIPopupMenuButtonItem.d"],"deps-style":"makefile","signature":"c452aaaac9c84891635b8ebede1ca38f"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIPopupMenuView.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIPopupMenuView/QMUIPopupMenuView.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIPopupMenuView.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIPopupMenuView/QMUIPopupMenuView.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIPopupMenuView/QMUIPopupMenuView.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIPopupMenuView.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIPopupMenuView.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIPopupMenuView.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIPopupMenuView/QMUIPopupMenuView.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIPopupMenuView.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIPopupMenuView.d"],"deps-style":"makefile","signature":"46feb2c6d70a6ee4fca32e98b909731e"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIRuntime.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUICore/QMUIRuntime.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIRuntime.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUICore/QMUIRuntime.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUICore/QMUIRuntime.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIRuntime.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIRuntime.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIRuntime.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUICore/QMUIRuntime.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIRuntime.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIRuntime.d"],"deps-style":"makefile","signature":"2d569b15d78fb1e04226725bf985a0f1"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIScrollAnimator.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIScrollAnimator/QMUIScrollAnimator.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIScrollAnimator.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIScrollAnimator/QMUIScrollAnimator.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIScrollAnimator/QMUIScrollAnimator.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIScrollAnimator.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIScrollAnimator.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIScrollAnimator.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIScrollAnimator/QMUIScrollAnimator.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIScrollAnimator.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIScrollAnimator.d"],"deps-style":"makefile","signature":"ef5cd83e18a8d2a09ad5a006dcb68747"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUISearchBar.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUISearchBar.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUISearchBar.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUISearchBar.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUISearchBar.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUISearchBar.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUISearchBar.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUISearchBar.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUISearchBar.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUISearchBar.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUISearchBar.d"],"deps-style":"makefile","signature":"126fbed3c36f082a91929c1031c5ef12"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUISearchController.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUISearchController.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUISearchController.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUISearchController.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUISearchController.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUISearchController.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUISearchController.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUISearchController.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUISearchController.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUISearchController.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUISearchController.d"],"deps-style":"makefile","signature":"5b63476a063d8856c50385e344ddaf3d"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUISegmentedControl.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUISegmentedControl.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUISegmentedControl.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUISegmentedControl.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUISegmentedControl.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUISegmentedControl.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUISegmentedControl.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUISegmentedControl.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUISegmentedControl.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUISegmentedControl.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUISegmentedControl.d"],"deps-style":"makefile","signature":"892684942fabd0153ae2f24b85b1ffea"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUISlider.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUISlider.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUISlider.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUISlider.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUISlider.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUISlider.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUISlider.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUISlider.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUISlider.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUISlider.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUISlider.d"],"deps-style":"makefile","signature":"a41b8f0d551585148e90e77f2e38ad28"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIStaticTableViewCellData.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/StaticTableView/QMUIStaticTableViewCellData.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIStaticTableViewCellData.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/StaticTableView/QMUIStaticTableViewCellData.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/StaticTableView/QMUIStaticTableViewCellData.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIStaticTableViewCellData.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIStaticTableViewCellData.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIStaticTableViewCellData.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/StaticTableView/QMUIStaticTableViewCellData.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIStaticTableViewCellData.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIStaticTableViewCellData.d"],"deps-style":"makefile","signature":"36a49ecf618cad3d193dc4793e853b45"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIStaticTableViewCellDataSource.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/StaticTableView/QMUIStaticTableViewCellDataSource.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIStaticTableViewCellDataSource.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/StaticTableView/QMUIStaticTableViewCellDataSource.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/StaticTableView/QMUIStaticTableViewCellDataSource.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIStaticTableViewCellDataSource.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIStaticTableViewCellDataSource.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIStaticTableViewCellDataSource.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/StaticTableView/QMUIStaticTableViewCellDataSource.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIStaticTableViewCellDataSource.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIStaticTableViewCellDataSource.d"],"deps-style":"makefile","signature":"a3ef33739d7c9d50f259eaa68be51bd5"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUITabBarViewController.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIMainFrame/QMUITabBarViewController.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUITabBarViewController.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIMainFrame/QMUITabBarViewController.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIMainFrame/QMUITabBarViewController.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUITabBarViewController.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUITabBarViewController.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUITabBarViewController.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIMainFrame/QMUITabBarViewController.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUITabBarViewController.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUITabBarViewController.d"],"deps-style":"makefile","signature":"bb033e1eb169598c4b3db713380e406e"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUITableView.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUITableView.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUITableView.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUITableView.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUITableView.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUITableView.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUITableView.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUITableView.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUITableView.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUITableView.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUITableView.d"],"deps-style":"makefile","signature":"647ebfdde6a0a4eb94e002d59723614d"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUITableViewCell.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUITableViewCell.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUITableViewCell.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUITableViewCell.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUITableViewCell.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUITableViewCell.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUITableViewCell.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUITableViewCell.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUITableViewCell.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUITableViewCell.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUITableViewCell.d"],"deps-style":"makefile","signature":"8ebca0e9e679a02155ffa81209fc336f"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUITableViewHeaderFooterView.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUITableViewHeaderFooterView.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUITableViewHeaderFooterView.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUITableViewHeaderFooterView.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUITableViewHeaderFooterView.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUITableViewHeaderFooterView.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUITableViewHeaderFooterView.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUITableViewHeaderFooterView.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUITableViewHeaderFooterView.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUITableViewHeaderFooterView.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUITableViewHeaderFooterView.d"],"deps-style":"makefile","signature":"42006d3f2bf3d22cf6e958300bbd2590"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUITestView.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUITestView.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUITestView.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUITestView.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUITestView.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUITestView.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUITestView.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUITestView.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUITestView.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUITestView.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUITestView.d"],"deps-style":"makefile","signature":"198f79a482a857062d7d3da6f35150f9"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUITextField.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUITextField.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUITextField.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUITextField.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUITextField.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUITextField.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUITextField.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUITextField.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUITextField.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUITextField.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUITextField.d"],"deps-style":"makefile","signature":"5585ba81510fc32a3224e282857e91eb"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUITextView.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUITextView.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUITextView.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUITextView.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUITextView.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUITextView.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUITextView.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUITextView.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUITextView.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUITextView.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUITextView.d"],"deps-style":"makefile","signature":"e7420f6f7c994d1162fd2ebfd6eb51b6"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIThemeManager.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUITheme/QMUIThemeManager.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIThemeManager.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUITheme/QMUIThemeManager.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUITheme/QMUIThemeManager.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIThemeManager.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIThemeManager.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIThemeManager.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUITheme/QMUIThemeManager.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIThemeManager.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIThemeManager.d"],"deps-style":"makefile","signature":"b0c8100a5643cbfa77b794f5126011c6"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIThemeManagerCenter.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUITheme/QMUIThemeManagerCenter.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIThemeManagerCenter.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUITheme/QMUIThemeManagerCenter.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUITheme/QMUIThemeManagerCenter.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIThemeManagerCenter.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIThemeManagerCenter.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIThemeManagerCenter.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUITheme/QMUIThemeManagerCenter.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIThemeManagerCenter.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIThemeManagerCenter.d"],"deps-style":"makefile","signature":"bb1ef0851a0c4990591fb0d477fdba9b"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIThemePrivate.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUITheme/QMUIThemePrivate.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIThemePrivate.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUITheme/QMUIThemePrivate.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUITheme/QMUIThemePrivate.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIThemePrivate.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIThemePrivate.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIThemePrivate.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUITheme/QMUIThemePrivate.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIThemePrivate.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIThemePrivate.d"],"deps-style":"makefile","signature":"db2855c5b5135b66cf3ca4d44b28078a"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUITips.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUITips.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUITips.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUITips.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUITips.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUITips.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUITips.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUITips.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUITips.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUITips.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUITips.d"],"deps-style":"makefile","signature":"b2d45c7fa06e6f94c5b58dbd51425868"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIToastAnimator.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/ToastView/QMUIToastAnimator.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIToastAnimator.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/ToastView/QMUIToastAnimator.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/ToastView/QMUIToastAnimator.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIToastAnimator.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIToastAnimator.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIToastAnimator.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/ToastView/QMUIToastAnimator.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIToastAnimator.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIToastAnimator.d"],"deps-style":"makefile","signature":"cc788b5d93bcc54c791fa8d6e7db8de1"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIToastBackgroundView.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/ToastView/QMUIToastBackgroundView.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIToastBackgroundView.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/ToastView/QMUIToastBackgroundView.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/ToastView/QMUIToastBackgroundView.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIToastBackgroundView.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIToastBackgroundView.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIToastBackgroundView.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/ToastView/QMUIToastBackgroundView.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIToastBackgroundView.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIToastBackgroundView.d"],"deps-style":"makefile","signature":"4eba5952f46613620553248cf181e441"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIToastContentView.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/ToastView/QMUIToastContentView.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIToastContentView.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/ToastView/QMUIToastContentView.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/ToastView/QMUIToastContentView.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIToastContentView.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIToastContentView.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIToastContentView.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/ToastView/QMUIToastContentView.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIToastContentView.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIToastContentView.d"],"deps-style":"makefile","signature":"11c789b9f8f8caa89e948ee0c0b77038"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIToastView.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/ToastView/QMUIToastView.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIToastView.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/ToastView/QMUIToastView.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/ToastView/QMUIToastView.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIToastView.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIToastView.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIToastView.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/ToastView/QMUIToastView.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIToastView.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIToastView.d"],"deps-style":"makefile","signature":"611e402e7b9fe893c2ff3d0bb53d0618"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIToolbarButton.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIButton/QMUIToolbarButton.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIToolbarButton.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIButton/QMUIToolbarButton.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIButton/QMUIToolbarButton.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIToolbarButton.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIToolbarButton.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIToolbarButton.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIButton/QMUIToolbarButton.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIToolbarButton.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIToolbarButton.d"],"deps-style":"makefile","signature":"29913c9254593e3ad1e99c0c7d52d246"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIVisualEffectView.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIVisualEffectView.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIVisualEffectView.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIVisualEffectView.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIVisualEffectView.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIVisualEffectView.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIVisualEffectView.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIVisualEffectView.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIVisualEffectView.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIVisualEffectView.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIVisualEffectView.d"],"deps-style":"makefile","signature":"604be7bd8a573d9ac96e9c2852eaad44"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIWeakObjectContainer.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIWeakObjectContainer.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIWeakObjectContainer.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIWeakObjectContainer.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIWeakObjectContainer.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIWeakObjectContainer.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIWeakObjectContainer.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIWeakObjectContainer.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIWeakObjectContainer.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIWeakObjectContainer.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIWeakObjectContainer.d"],"deps-style":"makefile","signature":"63d196a22995d6c628995886f5ff92b3"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIWindowSizeMonitor.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIWindowSizeMonitor.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIWindowSizeMonitor.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIWindowSizeMonitor.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIWindowSizeMonitor.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIWindowSizeMonitor.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIWindowSizeMonitor.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIWindowSizeMonitor.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIWindowSizeMonitor.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIWindowSizeMonitor.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIWindowSizeMonitor.d"],"deps-style":"makefile","signature":"5e90f363dabe8286f6b8ab605f3492e2"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIZoomImageView.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIZoomImageView.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIZoomImageView.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIZoomImageView.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIZoomImageView.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIZoomImageView.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIZoomImageView.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIZoomImageView.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIZoomImageView.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIZoomImageView.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIZoomImageView.d"],"deps-style":"makefile","signature":"8d2b3b16dcde877bcc9c52efb344efac"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIActivityIndicatorView+QMUI.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UIActivityIndicatorView+QMUI.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIActivityIndicatorView+QMUI.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UIActivityIndicatorView+QMUI.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UIActivityIndicatorView+QMUI.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIActivityIndicatorView+QMUI.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIActivityIndicatorView+QMUI.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIActivityIndicatorView+QMUI.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UIActivityIndicatorView+QMUI.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIActivityIndicatorView+QMUI.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIActivityIndicatorView+QMUI.d"],"deps-style":"makefile","signature":"9e527b319792e4d0c7ccd7f7d1191bc2"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIBarItem+QMUI.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UIBarItem+QMUI.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIBarItem+QMUI.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UIBarItem+QMUI.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UIBarItem+QMUI.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIBarItem+QMUI.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIBarItem+QMUI.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIBarItem+QMUI.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UIBarItem+QMUI.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIBarItem+QMUI.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIBarItem+QMUI.d"],"deps-style":"makefile","signature":"ac2f3d76fc55ce375b59e74965c0bcc1"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIBarItem+QMUIBadge.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIBadge/UIBarItem+QMUIBadge.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIBarItem+QMUIBadge.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIBadge/UIBarItem+QMUIBadge.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIBadge/UIBarItem+QMUIBadge.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIBarItem+QMUIBadge.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIBarItem+QMUIBadge.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIBarItem+QMUIBadge.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIBadge/UIBarItem+QMUIBadge.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIBarItem+QMUIBadge.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIBarItem+QMUIBadge.d"],"deps-style":"makefile","signature":"a7d875d0a4b206347e9a06f55b77e01b"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIBezierPath+QMUI.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UIBezierPath+QMUI.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIBezierPath+QMUI.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UIBezierPath+QMUI.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UIBezierPath+QMUI.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIBezierPath+QMUI.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIBezierPath+QMUI.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIBezierPath+QMUI.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UIBezierPath+QMUI.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIBezierPath+QMUI.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIBezierPath+QMUI.d"],"deps-style":"makefile","signature":"6b980c01a1b3392c37aa7e83db54251c"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIButton+QMUI.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UIButton+QMUI.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIButton+QMUI.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UIButton+QMUI.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UIButton+QMUI.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIButton+QMUI.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIButton+QMUI.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIButton+QMUI.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UIButton+QMUI.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIButton+QMUI.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIButton+QMUI.d"],"deps-style":"makefile","signature":"9a10f363e659e330058837c43a2b4a5f"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UICollectionView+QMUI.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UICollectionView+QMUI.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UICollectionView+QMUI.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UICollectionView+QMUI.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UICollectionView+QMUI.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UICollectionView+QMUI.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UICollectionView+QMUI.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UICollectionView+QMUI.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UICollectionView+QMUI.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UICollectionView+QMUI.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UICollectionView+QMUI.d"],"deps-style":"makefile","signature":"d649131f78c3dce5006acc6bbf9e7380"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UICollectionView+QMUICellSizeKeyCache.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUICellSizeKeyCache/UICollectionView+QMUICellSizeKeyCache.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UICollectionView+QMUICellSizeKeyCache.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUICellSizeKeyCache/UICollectionView+QMUICellSizeKeyCache.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUICellSizeKeyCache/UICollectionView+QMUICellSizeKeyCache.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UICollectionView+QMUICellSizeKeyCache.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UICollectionView+QMUICellSizeKeyCache.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UICollectionView+QMUICellSizeKeyCache.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUICellSizeKeyCache/UICollectionView+QMUICellSizeKeyCache.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UICollectionView+QMUICellSizeKeyCache.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UICollectionView+QMUICellSizeKeyCache.d"],"deps-style":"makefile","signature":"3bfb3b78982a0dbd22b9205003845209"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIColor+QMUI.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UIColor+QMUI.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIColor+QMUI.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UIColor+QMUI.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UIColor+QMUI.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIColor+QMUI.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIColor+QMUI.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIColor+QMUI.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UIColor+QMUI.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIColor+QMUI.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIColor+QMUI.d"],"deps-style":"makefile","signature":"73caf778f7a3ad9a232c16e05663a819"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIColor+QMUITheme.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUITheme/UIColor+QMUITheme.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIColor+QMUITheme.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUITheme/UIColor+QMUITheme.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUITheme/UIColor+QMUITheme.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIColor+QMUITheme.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIColor+QMUITheme.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIColor+QMUITheme.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUITheme/UIColor+QMUITheme.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIColor+QMUITheme.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIColor+QMUITheme.d"],"deps-style":"makefile","signature":"c797f9918cb78e372431a852c56a648e"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIControl+QMUI.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UIControl+QMUI.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIControl+QMUI.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UIControl+QMUI.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UIControl+QMUI.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIControl+QMUI.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIControl+QMUI.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIControl+QMUI.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UIControl+QMUI.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIControl+QMUI.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIControl+QMUI.d"],"deps-style":"makefile","signature":"5ddfb29d8d5602389aa3a291ab6a2658"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIFont+QMUI.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UIFont+QMUI.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIFont+QMUI.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UIFont+QMUI.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UIFont+QMUI.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIFont+QMUI.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIFont+QMUI.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIFont+QMUI.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UIFont+QMUI.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIFont+QMUI.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIFont+QMUI.d"],"deps-style":"makefile","signature":"9e761d3f4e8ceab9375c2084fdaddf3d"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIGestureRecognizer+QMUI.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UIGestureRecognizer+QMUI.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIGestureRecognizer+QMUI.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UIGestureRecognizer+QMUI.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UIGestureRecognizer+QMUI.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIGestureRecognizer+QMUI.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIGestureRecognizer+QMUI.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIGestureRecognizer+QMUI.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UIGestureRecognizer+QMUI.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIGestureRecognizer+QMUI.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIGestureRecognizer+QMUI.d"],"deps-style":"makefile","signature":"dae4026a2290c574bb5353bac9f4eeab"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIImage+QMUI.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UIImage+QMUI.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIImage+QMUI.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UIImage+QMUI.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UIImage+QMUI.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIImage+QMUI.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIImage+QMUI.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIImage+QMUI.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UIImage+QMUI.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIImage+QMUI.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIImage+QMUI.d"],"deps-style":"makefile","signature":"8f812c5ebcf08842dd79e505d1f0d793"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIImage+QMUITheme.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUITheme/UIImage+QMUITheme.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIImage+QMUITheme.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUITheme/UIImage+QMUITheme.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUITheme/UIImage+QMUITheme.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIImage+QMUITheme.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIImage+QMUITheme.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIImage+QMUITheme.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUITheme/UIImage+QMUITheme.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIImage+QMUITheme.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIImage+QMUITheme.d"],"deps-style":"makefile","signature":"b854187635249feb3e27c4b01f578d2b"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIImageView+QMUI.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UIImageView+QMUI.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIImageView+QMUI.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UIImageView+QMUI.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UIImageView+QMUI.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIImageView+QMUI.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIImageView+QMUI.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIImageView+QMUI.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UIImageView+QMUI.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIImageView+QMUI.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIImageView+QMUI.d"],"deps-style":"makefile","signature":"cddd07510b21c7490a1a1dbadcdd1e79"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIInterface+QMUI.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UIInterface+QMUI.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIInterface+QMUI.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UIInterface+QMUI.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UIInterface+QMUI.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIInterface+QMUI.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIInterface+QMUI.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIInterface+QMUI.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UIInterface+QMUI.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIInterface+QMUI.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIInterface+QMUI.d"],"deps-style":"makefile","signature":"f4d058a793cb25ce294e876f1674fb31"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UILabel+QMUI.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UILabel+QMUI.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UILabel+QMUI.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UILabel+QMUI.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UILabel+QMUI.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UILabel+QMUI.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UILabel+QMUI.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UILabel+QMUI.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UILabel+QMUI.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UILabel+QMUI.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UILabel+QMUI.d"],"deps-style":"makefile","signature":"46a0be5733aa396d3c1e9549535e844f"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIMenuController+QMUI.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UIMenuController+QMUI.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIMenuController+QMUI.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UIMenuController+QMUI.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UIMenuController+QMUI.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIMenuController+QMUI.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIMenuController+QMUI.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIMenuController+QMUI.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UIMenuController+QMUI.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIMenuController+QMUI.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIMenuController+QMUI.d"],"deps-style":"makefile","signature":"cbfe744b0cbe5a1d6b974ccedcc7b72c"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UINavigationBar+QMUI.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UINavigationBar+QMUI.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UINavigationBar+QMUI.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UINavigationBar+QMUI.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UINavigationBar+QMUI.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UINavigationBar+QMUI.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UINavigationBar+QMUI.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UINavigationBar+QMUI.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UINavigationBar+QMUI.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UINavigationBar+QMUI.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UINavigationBar+QMUI.d"],"deps-style":"makefile","signature":"38441e25e9f15b05a2bd201da5dde997"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UINavigationBar+Transition.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/NavigationBarTransition/UINavigationBar+Transition.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UINavigationBar+Transition.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/NavigationBarTransition/UINavigationBar+Transition.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/NavigationBarTransition/UINavigationBar+Transition.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UINavigationBar+Transition.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UINavigationBar+Transition.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UINavigationBar+Transition.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/NavigationBarTransition/UINavigationBar+Transition.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UINavigationBar+Transition.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UINavigationBar+Transition.d"],"deps-style":"makefile","signature":"fdf2f976d0e77d2a8feb8b8a6821c1df"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UINavigationController+NavigationBarTransition.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/NavigationBarTransition/UINavigationController+NavigationBarTransition.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UINavigationController+NavigationBarTransition.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/NavigationBarTransition/UINavigationController+NavigationBarTransition.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/NavigationBarTransition/UINavigationController+NavigationBarTransition.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UINavigationController+NavigationBarTransition.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UINavigationController+NavigationBarTransition.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UINavigationController+NavigationBarTransition.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/NavigationBarTransition/UINavigationController+NavigationBarTransition.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UINavigationController+NavigationBarTransition.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UINavigationController+NavigationBarTransition.d"],"deps-style":"makefile","signature":"64b774ca9576807355b276d827775f7f"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UINavigationController+QMUI.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UINavigationController+QMUI.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UINavigationController+QMUI.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UINavigationController+QMUI.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UINavigationController+QMUI.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UINavigationController+QMUI.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UINavigationController+QMUI.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UINavigationController+QMUI.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UINavigationController+QMUI.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UINavigationController+QMUI.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UINavigationController+QMUI.d"],"deps-style":"makefile","signature":"96c0849b4e4696feedb96fa1bf99b237"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIScrollView+QMUI.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UIScrollView+QMUI.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIScrollView+QMUI.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UIScrollView+QMUI.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UIScrollView+QMUI.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIScrollView+QMUI.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIScrollView+QMUI.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIScrollView+QMUI.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UIScrollView+QMUI.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIScrollView+QMUI.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIScrollView+QMUI.d"],"deps-style":"makefile","signature":"8491993f0addb819e5516b870ee683d9"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UISearchBar+QMUI.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UISearchBar+QMUI.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UISearchBar+QMUI.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UISearchBar+QMUI.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UISearchBar+QMUI.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UISearchBar+QMUI.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UISearchBar+QMUI.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UISearchBar+QMUI.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UISearchBar+QMUI.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UISearchBar+QMUI.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UISearchBar+QMUI.d"],"deps-style":"makefile","signature":"94552838e43465630218b4a7862e635d"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UISearchController+QMUI.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UISearchController+QMUI.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UISearchController+QMUI.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UISearchController+QMUI.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UISearchController+QMUI.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UISearchController+QMUI.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UISearchController+QMUI.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UISearchController+QMUI.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UISearchController+QMUI.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UISearchController+QMUI.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UISearchController+QMUI.d"],"deps-style":"makefile","signature":"f9250315eec45458081e99e5748f164f"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UISwitch+QMUI.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UISwitch+QMUI.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UISwitch+QMUI.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UISwitch+QMUI.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UISwitch+QMUI.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UISwitch+QMUI.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UISwitch+QMUI.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UISwitch+QMUI.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UISwitch+QMUI.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UISwitch+QMUI.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UISwitch+QMUI.d"],"deps-style":"makefile","signature":"3988ac020221ce10c925f17c77914348"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UITabBar+QMUI.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UITabBar+QMUI.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UITabBar+QMUI.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UITabBar+QMUI.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UITabBar+QMUI.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UITabBar+QMUI.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UITabBar+QMUI.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UITabBar+QMUI.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UITabBar+QMUI.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UITabBar+QMUI.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UITabBar+QMUI.d"],"deps-style":"makefile","signature":"88cf358b2e6070adfc0624686326a2e2"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UITabBarItem+QMUI.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UITabBarItem+QMUI.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UITabBarItem+QMUI.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UITabBarItem+QMUI.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UITabBarItem+QMUI.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UITabBarItem+QMUI.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UITabBarItem+QMUI.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UITabBarItem+QMUI.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UITabBarItem+QMUI.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UITabBarItem+QMUI.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UITabBarItem+QMUI.d"],"deps-style":"makefile","signature":"7fdbc3b598952ad15097b0d34392a8ab"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UITableView+QMUI.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UITableView+QMUI.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UITableView+QMUI.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UITableView+QMUI.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UITableView+QMUI.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UITableView+QMUI.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UITableView+QMUI.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UITableView+QMUI.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UITableView+QMUI.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UITableView+QMUI.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UITableView+QMUI.d"],"deps-style":"makefile","signature":"8e432bf00ec677aadb0981f1de38c164"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UITableView+QMUICellHeightKeyCache.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUICellHeightKeyCache/UITableView+QMUICellHeightKeyCache.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UITableView+QMUICellHeightKeyCache.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUICellHeightKeyCache/UITableView+QMUICellHeightKeyCache.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUICellHeightKeyCache/UITableView+QMUICellHeightKeyCache.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UITableView+QMUICellHeightKeyCache.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UITableView+QMUICellHeightKeyCache.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UITableView+QMUICellHeightKeyCache.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUICellHeightKeyCache/UITableView+QMUICellHeightKeyCache.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UITableView+QMUICellHeightKeyCache.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UITableView+QMUICellHeightKeyCache.d"],"deps-style":"makefile","signature":"91ee87b57980c4d92bf0bbf0396f7899"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UITableView+QMUIStaticCell.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/StaticTableView/UITableView+QMUIStaticCell.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UITableView+QMUIStaticCell.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/StaticTableView/UITableView+QMUIStaticCell.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/StaticTableView/UITableView+QMUIStaticCell.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UITableView+QMUIStaticCell.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UITableView+QMUIStaticCell.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UITableView+QMUIStaticCell.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/StaticTableView/UITableView+QMUIStaticCell.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UITableView+QMUIStaticCell.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UITableView+QMUIStaticCell.d"],"deps-style":"makefile","signature":"99fb591bbcbef875ea9ae2c3f5e564f3"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UITableViewCell+QMUI.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UITableViewCell+QMUI.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UITableViewCell+QMUI.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UITableViewCell+QMUI.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UITableViewCell+QMUI.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UITableViewCell+QMUI.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UITableViewCell+QMUI.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UITableViewCell+QMUI.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UITableViewCell+QMUI.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UITableViewCell+QMUI.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UITableViewCell+QMUI.d"],"deps-style":"makefile","signature":"2d110c9e10e5b6c9625ca4bec9cdc7df"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UITextField+QMUI.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UITextField+QMUI.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UITextField+QMUI.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UITextField+QMUI.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UITextField+QMUI.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UITextField+QMUI.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UITextField+QMUI.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UITextField+QMUI.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UITextField+QMUI.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UITextField+QMUI.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UITextField+QMUI.d"],"deps-style":"makefile","signature":"acc093ae497337f136ccd0ccb4586236"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UITextView+QMUI.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UITextView+QMUI.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UITextView+QMUI.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UITextView+QMUI.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UITextView+QMUI.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UITextView+QMUI.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UITextView+QMUI.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UITextView+QMUI.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UITextView+QMUI.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UITextView+QMUI.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UITextView+QMUI.d"],"deps-style":"makefile","signature":"4463c9e68351e166dceceec8e7dd43db"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UITraitCollection+QMUI.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UITraitCollection+QMUI.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UITraitCollection+QMUI.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UITraitCollection+QMUI.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UITraitCollection+QMUI.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UITraitCollection+QMUI.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UITraitCollection+QMUI.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UITraitCollection+QMUI.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UITraitCollection+QMUI.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UITraitCollection+QMUI.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UITraitCollection+QMUI.d"],"deps-style":"makefile","signature":"97807e7c105246ff5665a2b533e979b6"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIView+QMUI.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UIView+QMUI.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIView+QMUI.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UIView+QMUI.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UIView+QMUI.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIView+QMUI.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIView+QMUI.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIView+QMUI.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UIView+QMUI.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIView+QMUI.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIView+QMUI.d"],"deps-style":"makefile","signature":"93d1c9c524c330db7dc342b610f6bafc"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIView+QMUITheme.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUITheme/UIView+QMUITheme.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIView+QMUITheme.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUITheme/UIView+QMUITheme.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUITheme/UIView+QMUITheme.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIView+QMUITheme.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIView+QMUITheme.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIView+QMUITheme.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUITheme/UIView+QMUITheme.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIView+QMUITheme.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIView+QMUITheme.d"],"deps-style":"makefile","signature":"3ce32d5383ca2f4b761738606c20a9cf"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIViewController+QMUI.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UIViewController+QMUI.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIViewController+QMUI.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UIViewController+QMUI.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UIViewController+QMUI.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIViewController+QMUI.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIViewController+QMUI.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIViewController+QMUI.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UIViewController+QMUI.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIViewController+QMUI.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIViewController+QMUI.d"],"deps-style":"makefile","signature":"5ddd36e3f85f379f6907c87eee2469b3"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIViewController+QMUITheme.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUITheme/UIViewController+QMUITheme.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIViewController+QMUITheme.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUITheme/UIViewController+QMUITheme.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUITheme/UIViewController+QMUITheme.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIViewController+QMUITheme.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIViewController+QMUITheme.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIViewController+QMUITheme.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUITheme/UIViewController+QMUITheme.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIViewController+QMUITheme.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIViewController+QMUITheme.d"],"deps-style":"makefile","signature":"f7c4c28d85041a5488b8d2a6f51b53c8"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIVisualEffect+QMUITheme.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUITheme/UIVisualEffect+QMUITheme.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIVisualEffect+QMUITheme.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUITheme/UIVisualEffect+QMUITheme.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUITheme/UIVisualEffect+QMUITheme.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIVisualEffect+QMUITheme.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIVisualEffect+QMUITheme.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIVisualEffect+QMUITheme.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUITheme/UIVisualEffect+QMUITheme.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIVisualEffect+QMUITheme.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIVisualEffect+QMUITheme.d"],"deps-style":"makefile","signature":"72c6d7962d4a3d547ed10fde3c93cfc6"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIWindow+QMUI.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UIWindow+QMUI.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIWindow+QMUI.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UIWindow+QMUI.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UIWindow+QMUI.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIWindow+QMUI.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIWindow+QMUI.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIWindow+QMUI.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UIWindow+QMUI.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIWindow+QMUI.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIWindow+QMUI.d"],"deps-style":"makefile","signature":"b2b8d79e306026bf1eb9dabc530ebe18"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/CAAnimation+QMUI.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/CAAnimation+QMUI.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/CAAnimation+QMUI.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/CAAnimation+QMUI.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/CAAnimation+QMUI.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/CAAnimation+QMUI.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/CAAnimation+QMUI.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/CAAnimation+QMUI.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/CAAnimation+QMUI.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/CAAnimation+QMUI.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/CAAnimation+QMUI.d"],"deps-style":"makefile","signature":"ee6992e115e003fc790f068fab419ab2"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/CALayer+QMUI.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/CALayer+QMUI.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/CALayer+QMUI.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/CALayer+QMUI.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/CALayer+QMUI.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/CALayer+QMUI.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/CALayer+QMUI.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/CALayer+QMUI.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/CALayer+QMUI.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/CALayer+QMUI.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/CALayer+QMUI.d"],"deps-style":"makefile","signature":"29f049dc6c20c80bd97f53f6ec8cf215"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/NSArray+QMUI.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/NSArray+QMUI.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/NSArray+QMUI.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/NSArray+QMUI.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/NSArray+QMUI.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/NSArray+QMUI.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/NSArray+QMUI.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/NSArray+QMUI.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/NSArray+QMUI.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/NSArray+QMUI.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/NSArray+QMUI.d"],"deps-style":"makefile","signature":"d854b5ece4319988d792e39616b213d4"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/NSAttributedString+QMUI.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/NSAttributedString+QMUI.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/NSAttributedString+QMUI.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/NSAttributedString+QMUI.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/NSAttributedString+QMUI.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/NSAttributedString+QMUI.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/NSAttributedString+QMUI.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/NSAttributedString+QMUI.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/NSAttributedString+QMUI.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/NSAttributedString+QMUI.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/NSAttributedString+QMUI.d"],"deps-style":"makefile","signature":"a654372c3ac2628ebffd1d7eb80a9ad0"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/NSCharacterSet+QMUI.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/NSCharacterSet+QMUI.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/NSCharacterSet+QMUI.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/NSCharacterSet+QMUI.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/NSCharacterSet+QMUI.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/NSCharacterSet+QMUI.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/NSCharacterSet+QMUI.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/NSCharacterSet+QMUI.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/NSCharacterSet+QMUI.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/NSCharacterSet+QMUI.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/NSCharacterSet+QMUI.d"],"deps-style":"makefile","signature":"7e675064d01db253fd1e8c827de5c599"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/NSMethodSignature+QMUI.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/NSMethodSignature+QMUI.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/NSMethodSignature+QMUI.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/NSMethodSignature+QMUI.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/NSMethodSignature+QMUI.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/NSMethodSignature+QMUI.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/NSMethodSignature+QMUI.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/NSMethodSignature+QMUI.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/NSMethodSignature+QMUI.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/NSMethodSignature+QMUI.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/NSMethodSignature+QMUI.d"],"deps-style":"makefile","signature":"3864a177b83b4021179b23f00df7bab1"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/NSNumber+QMUI.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/NSNumber+QMUI.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/NSNumber+QMUI.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/NSNumber+QMUI.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/NSNumber+QMUI.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/NSNumber+QMUI.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/NSNumber+QMUI.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/NSNumber+QMUI.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/NSNumber+QMUI.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/NSNumber+QMUI.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/NSNumber+QMUI.d"],"deps-style":"makefile","signature":"9453884bf195d42a2848800793d9d735"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/NSObject+QMUI.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/NSObject+QMUI.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/NSObject+QMUI.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/NSObject+QMUI.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/NSObject+QMUI.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/NSObject+QMUI.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/NSObject+QMUI.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/NSObject+QMUI.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/NSObject+QMUI.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/NSObject+QMUI.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/NSObject+QMUI.d"],"deps-style":"makefile","signature":"afe345e00fe15c75a1c52437dc2fa130"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/NSObject+QMUIMultipleDelegates.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIMultipleDelegates/NSObject+QMUIMultipleDelegates.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/NSObject+QMUIMultipleDelegates.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIMultipleDelegates/NSObject+QMUIMultipleDelegates.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIMultipleDelegates/NSObject+QMUIMultipleDelegates.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/NSObject+QMUIMultipleDelegates.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/NSObject+QMUIMultipleDelegates.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/NSObject+QMUIMultipleDelegates.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIMultipleDelegates/NSObject+QMUIMultipleDelegates.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/NSObject+QMUIMultipleDelegates.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/NSObject+QMUIMultipleDelegates.d"],"deps-style":"makefile","signature":"be5038f58f61e36999f5e09a35f60c3f"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/NSParagraphStyle+QMUI.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/NSParagraphStyle+QMUI.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/NSParagraphStyle+QMUI.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/NSParagraphStyle+QMUI.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/NSParagraphStyle+QMUI.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/NSParagraphStyle+QMUI.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/NSParagraphStyle+QMUI.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/NSParagraphStyle+QMUI.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/NSParagraphStyle+QMUI.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/NSParagraphStyle+QMUI.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/NSParagraphStyle+QMUI.d"],"deps-style":"makefile","signature":"783102d1a75f9b69943f13eb4da72cc8"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/NSPointerArray+QMUI.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/NSPointerArray+QMUI.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/NSPointerArray+QMUI.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/NSPointerArray+QMUI.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/NSPointerArray+QMUI.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/NSPointerArray+QMUI.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/NSPointerArray+QMUI.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/NSPointerArray+QMUI.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/NSPointerArray+QMUI.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/NSPointerArray+QMUI.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/NSPointerArray+QMUI.d"],"deps-style":"makefile","signature":"16a1aa0e8f671173a7a038fc1c0f5e5a"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/NSString+QMUI.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/NSString+QMUI.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/NSString+QMUI.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/NSString+QMUI.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/NSString+QMUI.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/NSString+QMUI.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/NSString+QMUI.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/NSString+QMUI.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/NSString+QMUI.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/NSString+QMUI.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/NSString+QMUI.d"],"deps-style":"makefile","signature":"5ca9b8ac6873c0ca17c51f6df0d39463"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/NSURL+QMUI.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/NSURL+QMUI.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/NSURL+QMUI.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/NSURL+QMUI.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/NSURL+QMUI.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/NSURL+QMUI.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/NSURL+QMUI.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/NSURL+QMUI.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/NSURL+QMUI.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/NSURL+QMUI.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/NSURL+QMUI.d"],"deps-style":"makefile","signature":"bf9d7a1a37a71418c0e903d5f1ce88fd"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIAlbumViewController.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/ImagePickerLibrary/QMUIAlbumViewController.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIAlbumViewController.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/ImagePickerLibrary/QMUIAlbumViewController.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/ImagePickerLibrary/QMUIAlbumViewController.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIAlbumViewController.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIAlbumViewController.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIAlbumViewController.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/ImagePickerLibrary/QMUIAlbumViewController.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIAlbumViewController.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIAlbumViewController.d"],"deps-style":"makefile","signature":"de19b9caca0d03d4db1c2679a4ab92f9"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIAlertController.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIAlertController.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIAlertController.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIAlertController.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIAlertController.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIAlertController.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIAlertController.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIAlertController.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIAlertController.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIAlertController.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIAlertController.d"],"deps-style":"makefile","signature":"90543218f3b10e959b98ec39de42bc7e"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIAnimationHelper.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIAnimation/QMUIAnimationHelper.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIAnimationHelper.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIAnimation/QMUIAnimationHelper.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIAnimation/QMUIAnimationHelper.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIAnimationHelper.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIAnimationHelper.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIAnimationHelper.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIAnimation/QMUIAnimationHelper.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIAnimationHelper.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIAnimationHelper.d"],"deps-style":"makefile","signature":"8a11b9af445bb337e137ed1b41e33127"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIAsset.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/AssetLibrary/QMUIAsset.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIAsset.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/AssetLibrary/QMUIAsset.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/AssetLibrary/QMUIAsset.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIAsset.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIAsset.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIAsset.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/AssetLibrary/QMUIAsset.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIAsset.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIAsset.d"],"deps-style":"makefile","signature":"718a12f6041ef74c107b8e1345abe0ae"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIAssetsGroup.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/AssetLibrary/QMUIAssetsGroup.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIAssetsGroup.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/AssetLibrary/QMUIAssetsGroup.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/AssetLibrary/QMUIAssetsGroup.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIAssetsGroup.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIAssetsGroup.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIAssetsGroup.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/AssetLibrary/QMUIAssetsGroup.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIAssetsGroup.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIAssetsGroup.d"],"deps-style":"makefile","signature":"bea45f5f11492adb11b40da4fb066785"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIAssetsManager.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/AssetLibrary/QMUIAssetsManager.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIAssetsManager.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/AssetLibrary/QMUIAssetsManager.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/AssetLibrary/QMUIAssetsManager.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIAssetsManager.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIAssetsManager.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIAssetsManager.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/AssetLibrary/QMUIAssetsManager.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIAssetsManager.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIAssetsManager.d"],"deps-style":"makefile","signature":"84dea61f6c4668feb8055d3546dcd792"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIButton.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIButton/QMUIButton.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIButton.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIButton/QMUIButton.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIButton/QMUIButton.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIButton.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIButton.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIButton.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIButton/QMUIButton.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIButton.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIButton.d"],"deps-style":"makefile","signature":"05d1735e66b7b9b0aa61137253f6dce4"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUICellHeightCache.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUICellHeightCache.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUICellHeightCache.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUICellHeightCache.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUICellHeightCache.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUICellHeightCache.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUICellHeightCache.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUICellHeightCache.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUICellHeightCache.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUICellHeightCache.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUICellHeightCache.d"],"deps-style":"makefile","signature":"700d976106b6b7c7df63136abbd20ba1"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUICellHeightKeyCache.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUICellHeightKeyCache/QMUICellHeightKeyCache.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUICellHeightKeyCache.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUICellHeightKeyCache/QMUICellHeightKeyCache.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUICellHeightKeyCache/QMUICellHeightKeyCache.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUICellHeightKeyCache.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUICellHeightKeyCache.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUICellHeightKeyCache.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUICellHeightKeyCache/QMUICellHeightKeyCache.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUICellHeightKeyCache.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUICellHeightKeyCache.d"],"deps-style":"makefile","signature":"d8b23f42acd110a55a824439ff08c7d1"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUICellSizeKeyCache.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUICellSizeKeyCache/QMUICellSizeKeyCache.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUICellSizeKeyCache.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUICellSizeKeyCache/QMUICellSizeKeyCache.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUICellSizeKeyCache/QMUICellSizeKeyCache.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUICellSizeKeyCache.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUICellSizeKeyCache.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUICellSizeKeyCache.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUICellSizeKeyCache/QMUICellSizeKeyCache.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUICellSizeKeyCache.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUICellSizeKeyCache.d"],"deps-style":"makefile","signature":"39b5e5e976c389d2c4dea1a854bb6c33"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUICollectionViewPagingLayout.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUICollectionViewPagingLayout.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUICollectionViewPagingLayout.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUICollectionViewPagingLayout.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUICollectionViewPagingLayout.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUICollectionViewPagingLayout.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUICollectionViewPagingLayout.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUICollectionViewPagingLayout.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUICollectionViewPagingLayout.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUICollectionViewPagingLayout.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUICollectionViewPagingLayout.d"],"deps-style":"makefile","signature":"32b6db7fb4ddf90d1bc202a44bbdeef1"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUICommonTableViewController.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIMainFrame/QMUICommonTableViewController.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUICommonTableViewController.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIMainFrame/QMUICommonTableViewController.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIMainFrame/QMUICommonTableViewController.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUICommonTableViewController.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUICommonTableViewController.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUICommonTableViewController.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIMainFrame/QMUICommonTableViewController.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUICommonTableViewController.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUICommonTableViewController.d"],"deps-style":"makefile","signature":"979c4e1e90304ba12c0f8e3f26445053"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUICommonViewController.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIMainFrame/QMUICommonViewController.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUICommonViewController.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIMainFrame/QMUICommonViewController.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIMainFrame/QMUICommonViewController.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUICommonViewController.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUICommonViewController.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUICommonViewController.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIMainFrame/QMUICommonViewController.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUICommonViewController.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUICommonViewController.d"],"deps-style":"makefile","signature":"3a2e7561600877edc29806f314663957"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIConfiguration.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUICore/QMUIConfiguration.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIConfiguration.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUICore/QMUIConfiguration.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUICore/QMUIConfiguration.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIConfiguration.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIConfiguration.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIConfiguration.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUICore/QMUIConfiguration.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIConfiguration.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIConfiguration.d"],"deps-style":"makefile","signature":"ee673ad92a2931c0d959970b673d059b"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIConsole.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIConsole/QMUIConsole.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIConsole.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIConsole/QMUIConsole.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIConsole/QMUIConsole.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIConsole.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIConsole.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIConsole.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIConsole/QMUIConsole.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIConsole.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIConsole.d"],"deps-style":"makefile","signature":"352a1c5ca5f7e08853a2934344b2aa08"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIConsoleToolbar.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIConsole/QMUIConsoleToolbar.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIConsoleToolbar.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIConsole/QMUIConsoleToolbar.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIConsole/QMUIConsoleToolbar.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIConsoleToolbar.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIConsoleToolbar.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIConsoleToolbar.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIConsole/QMUIConsoleToolbar.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIConsoleToolbar.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIConsoleToolbar.d"],"deps-style":"makefile","signature":"0fc776bd3863ecca47ad976427b14be0"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIConsoleViewController.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIConsole/QMUIConsoleViewController.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIConsoleViewController.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIConsole/QMUIConsoleViewController.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIConsole/QMUIConsoleViewController.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIConsoleViewController.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIConsoleViewController.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIConsoleViewController.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIConsole/QMUIConsoleViewController.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIConsoleViewController.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIConsoleViewController.d"],"deps-style":"makefile","signature":"4bc21ae49c7b5f18c97820c7a400fe29"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIDialogViewController.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIDialogViewController.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIDialogViewController.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIDialogViewController.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIDialogViewController.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIDialogViewController.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIDialogViewController.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIDialogViewController.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIDialogViewController.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIDialogViewController.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIDialogViewController.d"],"deps-style":"makefile","signature":"2bcfdc9805e74ec67ee87de0b518f842"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIDisplayLinkAnimation.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIAnimation/QMUIDisplayLinkAnimation.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIDisplayLinkAnimation.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIAnimation/QMUIDisplayLinkAnimation.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIAnimation/QMUIDisplayLinkAnimation.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIDisplayLinkAnimation.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIDisplayLinkAnimation.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIDisplayLinkAnimation.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIAnimation/QMUIDisplayLinkAnimation.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIDisplayLinkAnimation.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIDisplayLinkAnimation.d"],"deps-style":"makefile","signature":"697173e9e55d0949609f8a335241b8a5"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIEmotionInputManager.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIEmotionInputManager.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIEmotionInputManager.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIEmotionInputManager.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIEmotionInputManager.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIEmotionInputManager.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIEmotionInputManager.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIEmotionInputManager.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIEmotionInputManager.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIEmotionInputManager.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIEmotionInputManager.d"],"deps-style":"makefile","signature":"11ee53bca80168672c523b663ce5785d"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIEmotionView.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIEmotionView.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIEmotionView.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIEmotionView.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIEmotionView.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIEmotionView.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIEmotionView.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIEmotionView.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIEmotionView.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIEmotionView.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIEmotionView.d"],"deps-style":"makefile","signature":"b3482f3e27c6a0b86cdced347080d60b"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIEmptyView.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIEmptyView.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIEmptyView.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIEmptyView.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIEmptyView.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIEmptyView.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIEmptyView.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIEmptyView.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIEmptyView.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIEmptyView.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIEmptyView.d"],"deps-style":"makefile","signature":"9af1deeac85d9d80712da6aa9a3acd12"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIFillButton.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIButton/QMUIFillButton.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIFillButton.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIButton/QMUIFillButton.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIButton/QMUIFillButton.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIFillButton.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIFillButton.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIFillButton.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIButton/QMUIFillButton.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIFillButton.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIFillButton.d"],"deps-style":"makefile","signature":"71e1c4aa87c640c58df33c2fc32b525a"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIFloatLayoutView.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIFloatLayoutView.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIFloatLayoutView.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIFloatLayoutView.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIFloatLayoutView.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIFloatLayoutView.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIFloatLayoutView.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIFloatLayoutView.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIFloatLayoutView.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIFloatLayoutView.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIFloatLayoutView.d"],"deps-style":"makefile","signature":"b30d0b8ebc74ba45d8b3b99584ba79c3"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIGhostButton.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIButton/QMUIGhostButton.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIGhostButton.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIButton/QMUIGhostButton.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIButton/QMUIGhostButton.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIGhostButton.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIGhostButton.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIGhostButton.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIButton/QMUIGhostButton.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIGhostButton.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIGhostButton.d"],"deps-style":"makefile","signature":"cbf604cec222449b774f299129269b8a"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIGridView.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIGridView.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIGridView.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIGridView.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIGridView.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIGridView.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIGridView.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIGridView.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIGridView.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIGridView.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIGridView.d"],"deps-style":"makefile","signature":"537dfa15c782936aae90f764644bfcd5"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIHelper.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUICore/QMUIHelper.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIHelper.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUICore/QMUIHelper.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUICore/QMUIHelper.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIHelper.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIHelper.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIHelper.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUICore/QMUIHelper.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIHelper.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIHelper.d"],"deps-style":"makefile","signature":"12a18b4fc05711e9e3f30a033abd9f57"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIImagePickerCollectionViewCell.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/ImagePickerLibrary/QMUIImagePickerCollectionViewCell.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIImagePickerCollectionViewCell.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/ImagePickerLibrary/QMUIImagePickerCollectionViewCell.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/ImagePickerLibrary/QMUIImagePickerCollectionViewCell.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIImagePickerCollectionViewCell.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIImagePickerCollectionViewCell.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIImagePickerCollectionViewCell.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/ImagePickerLibrary/QMUIImagePickerCollectionViewCell.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIImagePickerCollectionViewCell.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIImagePickerCollectionViewCell.d"],"deps-style":"makefile","signature":"0c12536df2b6b526abe78de0df2fc651"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIImagePickerHelper.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/ImagePickerLibrary/QMUIImagePickerHelper.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIImagePickerHelper.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/ImagePickerLibrary/QMUIImagePickerHelper.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/ImagePickerLibrary/QMUIImagePickerHelper.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIImagePickerHelper.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIImagePickerHelper.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIImagePickerHelper.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/ImagePickerLibrary/QMUIImagePickerHelper.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIImagePickerHelper.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIImagePickerHelper.d"],"deps-style":"makefile","signature":"8b23d0f31fa13091a67c54d18f354c97"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIImagePickerPreviewViewController.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/ImagePickerLibrary/QMUIImagePickerPreviewViewController.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIImagePickerPreviewViewController.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/ImagePickerLibrary/QMUIImagePickerPreviewViewController.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/ImagePickerLibrary/QMUIImagePickerPreviewViewController.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIImagePickerPreviewViewController.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIImagePickerPreviewViewController.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIImagePickerPreviewViewController.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/ImagePickerLibrary/QMUIImagePickerPreviewViewController.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIImagePickerPreviewViewController.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIImagePickerPreviewViewController.d"],"deps-style":"makefile","signature":"bc429721735da3a6dcafbe378ad4441a"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIImagePickerViewController.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/ImagePickerLibrary/QMUIImagePickerViewController.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIImagePickerViewController.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/ImagePickerLibrary/QMUIImagePickerViewController.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/ImagePickerLibrary/QMUIImagePickerViewController.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIImagePickerViewController.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIImagePickerViewController.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIImagePickerViewController.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/ImagePickerLibrary/QMUIImagePickerViewController.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIImagePickerViewController.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIImagePickerViewController.d"],"deps-style":"makefile","signature":"c596f765a092df91ba167aa3a38610cb"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIImagePreviewView.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIImagePreviewView/QMUIImagePreviewView.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIImagePreviewView.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIImagePreviewView/QMUIImagePreviewView.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIImagePreviewView/QMUIImagePreviewView.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIImagePreviewView.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIImagePreviewView.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIImagePreviewView.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIImagePreviewView/QMUIImagePreviewView.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIImagePreviewView.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIImagePreviewView.d"],"deps-style":"makefile","signature":"485aabbaa59e9f438856d32c40e2dc88"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIImagePreviewViewController.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIImagePreviewView/QMUIImagePreviewViewController.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIImagePreviewViewController.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIImagePreviewView/QMUIImagePreviewViewController.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIImagePreviewView/QMUIImagePreviewViewController.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIImagePreviewViewController.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIImagePreviewViewController.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIImagePreviewViewController.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIImagePreviewView/QMUIImagePreviewViewController.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIImagePreviewViewController.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIImagePreviewViewController.d"],"deps-style":"makefile","signature":"5a3a8ed3e4000c2391b699267366cbfa"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIImagePreviewViewTransitionAnimator.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIImagePreviewView/QMUIImagePreviewViewTransitionAnimator.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIImagePreviewViewTransitionAnimator.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIImagePreviewView/QMUIImagePreviewViewTransitionAnimator.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIImagePreviewView/QMUIImagePreviewViewTransitionAnimator.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIImagePreviewViewTransitionAnimator.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIImagePreviewViewTransitionAnimator.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIImagePreviewViewTransitionAnimator.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIImagePreviewView/QMUIImagePreviewViewTransitionAnimator.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIImagePreviewViewTransitionAnimator.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIImagePreviewViewTransitionAnimator.d"],"deps-style":"makefile","signature":"d1e14d3429e92392544308ffbed450f3"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIKeyboardManager.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIKeyboardManager.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIKeyboardManager.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIKeyboardManager.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIKeyboardManager.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIKeyboardManager.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIKeyboardManager.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIKeyboardManager.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIKeyboardManager.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIKeyboardManager.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIKeyboardManager.d"],"deps-style":"makefile","signature":"d8d2c3e7859d7deae794865abc34af9e"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIKit-dummy.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-dummy.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIKit-dummy.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-dummy.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-dummy.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIKit-dummy.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIKit-dummy.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIKit-dummy.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-dummy.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIKit-dummy.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIKit-dummy.d"],"deps-style":"makefile","signature":"b4b174c90292db21067c192c83e971ec"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIKit_vers.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/QMUIKit_vers.c normal armv7 c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIKit_vers.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/QMUIKit_vers.c normal armv7 c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/QMUIKit_vers.c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIKit_vers.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c","-target","armv7-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Werror=deprecated-objc-isa-usage","-Werror=objc-root-class","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIKit_vers.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIKit_vers.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/QMUIKit_vers.c","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIKit_vers.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIKit_vers.d"],"deps-style":"makefile","signature":"7d5fd2e7db7f33830fb0e426e4330116"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUILabel.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUILabel.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUILabel.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUILabel.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUILabel.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUILabel.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUILabel.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUILabel.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUILabel.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUILabel.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUILabel.d"],"deps-style":"makefile","signature":"a283be0a8a0da98e73b17370967f9344"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUILinkButton.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIButton/QMUILinkButton.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUILinkButton.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIButton/QMUILinkButton.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIButton/QMUILinkButton.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUILinkButton.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUILinkButton.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUILinkButton.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIButton/QMUILinkButton.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUILinkButton.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUILinkButton.d"],"deps-style":"makefile","signature":"ff63311c78ed8cb840e65d7caa29ac2f"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUILog+QMUIConsole.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIConsole/QMUILog+QMUIConsole.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUILog+QMUIConsole.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIConsole/QMUILog+QMUIConsole.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIConsole/QMUILog+QMUIConsole.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUILog+QMUIConsole.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUILog+QMUIConsole.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUILog+QMUIConsole.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIConsole/QMUILog+QMUIConsole.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUILog+QMUIConsole.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUILog+QMUIConsole.d"],"deps-style":"makefile","signature":"eb377b16c66f8d891ce991f8d5fc833b"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUILogItem.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUILog/QMUILogItem.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUILogItem.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUILog/QMUILogItem.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUILog/QMUILogItem.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUILogItem.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUILogItem.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUILogItem.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUILog/QMUILogItem.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUILogItem.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUILogItem.d"],"deps-style":"makefile","signature":"26e5d616ce9fabadfbef54ecc4a1bbb0"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUILogManagerViewController.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUILogManagerViewController.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUILogManagerViewController.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUILogManagerViewController.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUILogManagerViewController.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUILogManagerViewController.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUILogManagerViewController.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUILogManagerViewController.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUILogManagerViewController.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUILogManagerViewController.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUILogManagerViewController.d"],"deps-style":"makefile","signature":"f9ad29374d4bf6e697c8d55d8063104c"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUILogNameManager.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUILog/QMUILogNameManager.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUILogNameManager.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUILog/QMUILogNameManager.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUILog/QMUILogNameManager.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUILogNameManager.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUILogNameManager.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUILogNameManager.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUILog/QMUILogNameManager.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUILogNameManager.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUILogNameManager.d"],"deps-style":"makefile","signature":"296aaa33b5d16a3d7b98325da7b65f0c"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUILogger+QMUIConfigurationTemplate.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUILogger+QMUIConfigurationTemplate.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUILogger+QMUIConfigurationTemplate.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUILogger+QMUIConfigurationTemplate.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUILogger+QMUIConfigurationTemplate.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUILogger+QMUIConfigurationTemplate.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUILogger+QMUIConfigurationTemplate.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUILogger+QMUIConfigurationTemplate.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUILogger+QMUIConfigurationTemplate.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUILogger+QMUIConfigurationTemplate.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUILogger+QMUIConfigurationTemplate.d"],"deps-style":"makefile","signature":"33da039d5cfa0642ad46ae18d2a6238f"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUILogger.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUILog/QMUILogger.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUILogger.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUILog/QMUILogger.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUILog/QMUILogger.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUILogger.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUILogger.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUILogger.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUILog/QMUILogger.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUILogger.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUILogger.d"],"deps-style":"makefile","signature":"2141deb2ce8117946d2905c748f646f2"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIMarqueeLabel.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIMarqueeLabel.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIMarqueeLabel.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIMarqueeLabel.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIMarqueeLabel.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIMarqueeLabel.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIMarqueeLabel.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIMarqueeLabel.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIMarqueeLabel.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIMarqueeLabel.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIMarqueeLabel.d"],"deps-style":"makefile","signature":"75815f903e00c5c7c919e256c9b4c5bf"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIModalPresentationViewController.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIModalPresentationViewController.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIModalPresentationViewController.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIModalPresentationViewController.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIModalPresentationViewController.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIModalPresentationViewController.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIModalPresentationViewController.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIModalPresentationViewController.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIModalPresentationViewController.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIModalPresentationViewController.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIModalPresentationViewController.d"],"deps-style":"makefile","signature":"0a90a0c901df06e895ee2e1abcf874db"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIMoreOperationController.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIMoreOperationController.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIMoreOperationController.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIMoreOperationController.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIMoreOperationController.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIMoreOperationController.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIMoreOperationController.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIMoreOperationController.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIMoreOperationController.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIMoreOperationController.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIMoreOperationController.d"],"deps-style":"makefile","signature":"0f67706d4e229afa0bd67a630cd97623"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIMultipleDelegates.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIMultipleDelegates/QMUIMultipleDelegates.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIMultipleDelegates.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIMultipleDelegates/QMUIMultipleDelegates.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIMultipleDelegates/QMUIMultipleDelegates.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIMultipleDelegates.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIMultipleDelegates.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIMultipleDelegates.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIMultipleDelegates/QMUIMultipleDelegates.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIMultipleDelegates.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIMultipleDelegates.d"],"deps-style":"makefile","signature":"8485ee69ade56c7ab0d21fa21be5fcc4"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUINavigationBarScrollingAnimator.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIScrollAnimator/QMUINavigationBarScrollingAnimator.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUINavigationBarScrollingAnimator.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIScrollAnimator/QMUINavigationBarScrollingAnimator.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIScrollAnimator/QMUINavigationBarScrollingAnimator.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUINavigationBarScrollingAnimator.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUINavigationBarScrollingAnimator.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUINavigationBarScrollingAnimator.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIScrollAnimator/QMUINavigationBarScrollingAnimator.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUINavigationBarScrollingAnimator.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUINavigationBarScrollingAnimator.d"],"deps-style":"makefile","signature":"9446cbaa4e74bc0950570dcd616c7b67"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUINavigationBarScrollingSnapAnimator.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIScrollAnimator/QMUINavigationBarScrollingSnapAnimator.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUINavigationBarScrollingSnapAnimator.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIScrollAnimator/QMUINavigationBarScrollingSnapAnimator.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIScrollAnimator/QMUINavigationBarScrollingSnapAnimator.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUINavigationBarScrollingSnapAnimator.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUINavigationBarScrollingSnapAnimator.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUINavigationBarScrollingSnapAnimator.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIScrollAnimator/QMUINavigationBarScrollingSnapAnimator.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUINavigationBarScrollingSnapAnimator.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUINavigationBarScrollingSnapAnimator.d"],"deps-style":"makefile","signature":"3f607e5d21e64c1c5e7c7f0a8ba85770"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUINavigationButton.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIButton/QMUINavigationButton.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUINavigationButton.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIButton/QMUINavigationButton.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIButton/QMUINavigationButton.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUINavigationButton.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUINavigationButton.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUINavigationButton.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIButton/QMUINavigationButton.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUINavigationButton.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUINavigationButton.d"],"deps-style":"makefile","signature":"57383b674dda9f8aff9cb683a931cee6"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUINavigationController.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIMainFrame/QMUINavigationController.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUINavigationController.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIMainFrame/QMUINavigationController.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIMainFrame/QMUINavigationController.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUINavigationController.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUINavigationController.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUINavigationController.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIMainFrame/QMUINavigationController.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUINavigationController.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUINavigationController.d"],"deps-style":"makefile","signature":"c857a6be2ccedf66689eec501f3d2301"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUINavigationTitleView.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUINavigationTitleView.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUINavigationTitleView.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUINavigationTitleView.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUINavigationTitleView.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUINavigationTitleView.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUINavigationTitleView.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUINavigationTitleView.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUINavigationTitleView.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUINavigationTitleView.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUINavigationTitleView.d"],"deps-style":"makefile","signature":"d55ca90e689915dd1c1c50165762c032"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIOrderedDictionary.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIOrderedDictionary.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIOrderedDictionary.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIOrderedDictionary.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIOrderedDictionary.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIOrderedDictionary.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIOrderedDictionary.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIOrderedDictionary.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIOrderedDictionary.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIOrderedDictionary.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIOrderedDictionary.d"],"deps-style":"makefile","signature":"3aa6f47c903d01a0bea586046ea57eb5"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIPieProgressView.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIPieProgressView.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIPieProgressView.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIPieProgressView.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIPieProgressView.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIPieProgressView.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIPieProgressView.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIPieProgressView.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIPieProgressView.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIPieProgressView.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIPieProgressView.d"],"deps-style":"makefile","signature":"f5260db15a6985ecbc843f0d61113330"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIPopupContainerView.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIPopupContainerView.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIPopupContainerView.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIPopupContainerView.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIPopupContainerView.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIPopupContainerView.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIPopupContainerView.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIPopupContainerView.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIPopupContainerView.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIPopupContainerView.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIPopupContainerView.d"],"deps-style":"makefile","signature":"1660b0487066ca8426cd2ff7d6349960"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIPopupMenuBaseItem.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIPopupMenuView/QMUIPopupMenuBaseItem.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIPopupMenuBaseItem.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIPopupMenuView/QMUIPopupMenuBaseItem.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIPopupMenuView/QMUIPopupMenuBaseItem.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIPopupMenuBaseItem.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIPopupMenuBaseItem.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIPopupMenuBaseItem.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIPopupMenuView/QMUIPopupMenuBaseItem.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIPopupMenuBaseItem.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIPopupMenuBaseItem.d"],"deps-style":"makefile","signature":"93d08527627770a73ac4bce645d0ed52"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIPopupMenuButtonItem.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIPopupMenuView/QMUIPopupMenuButtonItem.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIPopupMenuButtonItem.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIPopupMenuView/QMUIPopupMenuButtonItem.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIPopupMenuView/QMUIPopupMenuButtonItem.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIPopupMenuButtonItem.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIPopupMenuButtonItem.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIPopupMenuButtonItem.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIPopupMenuView/QMUIPopupMenuButtonItem.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIPopupMenuButtonItem.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIPopupMenuButtonItem.d"],"deps-style":"makefile","signature":"43b1cee71f912f21e40f93ced0df0d76"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIPopupMenuView.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIPopupMenuView/QMUIPopupMenuView.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIPopupMenuView.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIPopupMenuView/QMUIPopupMenuView.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIPopupMenuView/QMUIPopupMenuView.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIPopupMenuView.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIPopupMenuView.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIPopupMenuView.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIPopupMenuView/QMUIPopupMenuView.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIPopupMenuView.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIPopupMenuView.d"],"deps-style":"makefile","signature":"7c03662be2a5e24c2d8e014e1fdf7641"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIRuntime.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUICore/QMUIRuntime.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIRuntime.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUICore/QMUIRuntime.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUICore/QMUIRuntime.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIRuntime.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIRuntime.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIRuntime.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUICore/QMUIRuntime.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIRuntime.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIRuntime.d"],"deps-style":"makefile","signature":"d5ead4b39e62c4b4b104663dfc6045be"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIScrollAnimator.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIScrollAnimator/QMUIScrollAnimator.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIScrollAnimator.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIScrollAnimator/QMUIScrollAnimator.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIScrollAnimator/QMUIScrollAnimator.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIScrollAnimator.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIScrollAnimator.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIScrollAnimator.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIScrollAnimator/QMUIScrollAnimator.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIScrollAnimator.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIScrollAnimator.d"],"deps-style":"makefile","signature":"e92fd83f60af0e120125a02acacaee6f"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUISearchBar.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUISearchBar.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUISearchBar.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUISearchBar.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUISearchBar.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUISearchBar.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUISearchBar.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUISearchBar.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUISearchBar.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUISearchBar.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUISearchBar.d"],"deps-style":"makefile","signature":"e1edcd0fc9276ba6ec23ef092022471a"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUISearchController.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUISearchController.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUISearchController.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUISearchController.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUISearchController.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUISearchController.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUISearchController.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUISearchController.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUISearchController.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUISearchController.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUISearchController.d"],"deps-style":"makefile","signature":"644920673c4d9e9e0f78386cbc28b6ea"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUISegmentedControl.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUISegmentedControl.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUISegmentedControl.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUISegmentedControl.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUISegmentedControl.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUISegmentedControl.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUISegmentedControl.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUISegmentedControl.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUISegmentedControl.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUISegmentedControl.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUISegmentedControl.d"],"deps-style":"makefile","signature":"1ae1ce53d93fa53884fbaf64083662a5"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUISlider.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUISlider.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUISlider.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUISlider.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUISlider.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUISlider.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUISlider.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUISlider.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUISlider.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUISlider.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUISlider.d"],"deps-style":"makefile","signature":"6a41666d751231ed77b64bf08c3a81e4"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIStaticTableViewCellData.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/StaticTableView/QMUIStaticTableViewCellData.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIStaticTableViewCellData.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/StaticTableView/QMUIStaticTableViewCellData.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/StaticTableView/QMUIStaticTableViewCellData.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIStaticTableViewCellData.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIStaticTableViewCellData.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIStaticTableViewCellData.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/StaticTableView/QMUIStaticTableViewCellData.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIStaticTableViewCellData.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIStaticTableViewCellData.d"],"deps-style":"makefile","signature":"5cd66300237ce0483d5bea12cb9f98c9"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIStaticTableViewCellDataSource.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/StaticTableView/QMUIStaticTableViewCellDataSource.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIStaticTableViewCellDataSource.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/StaticTableView/QMUIStaticTableViewCellDataSource.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/StaticTableView/QMUIStaticTableViewCellDataSource.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIStaticTableViewCellDataSource.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIStaticTableViewCellDataSource.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIStaticTableViewCellDataSource.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/StaticTableView/QMUIStaticTableViewCellDataSource.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIStaticTableViewCellDataSource.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIStaticTableViewCellDataSource.d"],"deps-style":"makefile","signature":"6d49a7d8d55ae39482eeecc57a00560f"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUITabBarViewController.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIMainFrame/QMUITabBarViewController.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUITabBarViewController.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIMainFrame/QMUITabBarViewController.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIMainFrame/QMUITabBarViewController.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUITabBarViewController.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUITabBarViewController.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUITabBarViewController.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIMainFrame/QMUITabBarViewController.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUITabBarViewController.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUITabBarViewController.d"],"deps-style":"makefile","signature":"d2ba9d4860cfaf38dd85cac954fdcb65"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUITableView.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUITableView.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUITableView.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUITableView.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUITableView.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUITableView.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUITableView.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUITableView.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUITableView.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUITableView.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUITableView.d"],"deps-style":"makefile","signature":"aa471c1942daa997931f2655024083ef"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUITableViewCell.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUITableViewCell.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUITableViewCell.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUITableViewCell.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUITableViewCell.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUITableViewCell.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUITableViewCell.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUITableViewCell.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUITableViewCell.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUITableViewCell.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUITableViewCell.d"],"deps-style":"makefile","signature":"59ce020daa079fd11fbc58310105bc29"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUITableViewHeaderFooterView.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUITableViewHeaderFooterView.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUITableViewHeaderFooterView.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUITableViewHeaderFooterView.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUITableViewHeaderFooterView.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUITableViewHeaderFooterView.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUITableViewHeaderFooterView.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUITableViewHeaderFooterView.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUITableViewHeaderFooterView.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUITableViewHeaderFooterView.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUITableViewHeaderFooterView.d"],"deps-style":"makefile","signature":"8a74c3a342cc4f1295e54e6edab3f439"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUITestView.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUITestView.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUITestView.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUITestView.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUITestView.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUITestView.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUITestView.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUITestView.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUITestView.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUITestView.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUITestView.d"],"deps-style":"makefile","signature":"eb62bcbb20cbd58aeb0aa91905c6e4ea"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUITextField.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUITextField.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUITextField.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUITextField.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUITextField.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUITextField.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUITextField.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUITextField.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUITextField.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUITextField.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUITextField.d"],"deps-style":"makefile","signature":"56cb1cd81d9825df5a930081f6044a83"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUITextView.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUITextView.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUITextView.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUITextView.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUITextView.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUITextView.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUITextView.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUITextView.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUITextView.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUITextView.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUITextView.d"],"deps-style":"makefile","signature":"9bbc67a835eccc0d134afc7ad170838d"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIThemeManager.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUITheme/QMUIThemeManager.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIThemeManager.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUITheme/QMUIThemeManager.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUITheme/QMUIThemeManager.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIThemeManager.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIThemeManager.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIThemeManager.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUITheme/QMUIThemeManager.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIThemeManager.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIThemeManager.d"],"deps-style":"makefile","signature":"8f4b0a5acd1614071db0f44f79079fd2"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIThemeManagerCenter.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUITheme/QMUIThemeManagerCenter.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIThemeManagerCenter.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUITheme/QMUIThemeManagerCenter.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUITheme/QMUIThemeManagerCenter.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIThemeManagerCenter.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIThemeManagerCenter.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIThemeManagerCenter.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUITheme/QMUIThemeManagerCenter.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIThemeManagerCenter.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIThemeManagerCenter.d"],"deps-style":"makefile","signature":"f9f4a7c74ec2ae78c203f24a499757dc"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIThemePrivate.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUITheme/QMUIThemePrivate.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIThemePrivate.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUITheme/QMUIThemePrivate.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUITheme/QMUIThemePrivate.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIThemePrivate.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIThemePrivate.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIThemePrivate.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUITheme/QMUIThemePrivate.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIThemePrivate.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIThemePrivate.d"],"deps-style":"makefile","signature":"9fee5056be45e271495a61549abed875"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUITips.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUITips.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUITips.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUITips.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUITips.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUITips.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUITips.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUITips.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUITips.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUITips.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUITips.d"],"deps-style":"makefile","signature":"3f5342340caab0e500a98d7c8d076e97"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIToastAnimator.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/ToastView/QMUIToastAnimator.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIToastAnimator.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/ToastView/QMUIToastAnimator.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/ToastView/QMUIToastAnimator.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIToastAnimator.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIToastAnimator.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIToastAnimator.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/ToastView/QMUIToastAnimator.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIToastAnimator.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIToastAnimator.d"],"deps-style":"makefile","signature":"238031cd4e70068caa69e8d92646e3e6"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIToastBackgroundView.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/ToastView/QMUIToastBackgroundView.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIToastBackgroundView.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/ToastView/QMUIToastBackgroundView.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/ToastView/QMUIToastBackgroundView.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIToastBackgroundView.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIToastBackgroundView.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIToastBackgroundView.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/ToastView/QMUIToastBackgroundView.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIToastBackgroundView.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIToastBackgroundView.d"],"deps-style":"makefile","signature":"04c4d65eff9248102a8792d3a869ef22"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIToastContentView.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/ToastView/QMUIToastContentView.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIToastContentView.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/ToastView/QMUIToastContentView.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/ToastView/QMUIToastContentView.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIToastContentView.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIToastContentView.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIToastContentView.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/ToastView/QMUIToastContentView.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIToastContentView.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIToastContentView.d"],"deps-style":"makefile","signature":"2d0282a25ffd977ee94dbc072aa8a24d"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIToastView.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/ToastView/QMUIToastView.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIToastView.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/ToastView/QMUIToastView.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/ToastView/QMUIToastView.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIToastView.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIToastView.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIToastView.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/ToastView/QMUIToastView.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIToastView.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIToastView.d"],"deps-style":"makefile","signature":"1777c35eee8267ed9baa6585b7fa8708"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIToolbarButton.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIButton/QMUIToolbarButton.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIToolbarButton.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIButton/QMUIToolbarButton.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIButton/QMUIToolbarButton.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIToolbarButton.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIToolbarButton.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIToolbarButton.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIButton/QMUIToolbarButton.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIToolbarButton.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIToolbarButton.d"],"deps-style":"makefile","signature":"e2dc878145b3f4d10dcfa2e6d8f7933e"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIVisualEffectView.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIVisualEffectView.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIVisualEffectView.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIVisualEffectView.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIVisualEffectView.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIVisualEffectView.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIVisualEffectView.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIVisualEffectView.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIVisualEffectView.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIVisualEffectView.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIVisualEffectView.d"],"deps-style":"makefile","signature":"ad253859688a72951a845dc04bc727c3"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIWeakObjectContainer.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIWeakObjectContainer.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIWeakObjectContainer.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIWeakObjectContainer.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIWeakObjectContainer.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIWeakObjectContainer.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIWeakObjectContainer.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIWeakObjectContainer.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIWeakObjectContainer.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIWeakObjectContainer.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIWeakObjectContainer.d"],"deps-style":"makefile","signature":"e8b9e5f979d602abe2d2a3799d64b6e6"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIWindowSizeMonitor.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIWindowSizeMonitor.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIWindowSizeMonitor.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIWindowSizeMonitor.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIWindowSizeMonitor.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIWindowSizeMonitor.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIWindowSizeMonitor.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIWindowSizeMonitor.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIWindowSizeMonitor.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIWindowSizeMonitor.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIWindowSizeMonitor.d"],"deps-style":"makefile","signature":"289240c3d75840fbb3ed06d6660ecd09"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIZoomImageView.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIZoomImageView.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIZoomImageView.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIZoomImageView.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIZoomImageView.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIZoomImageView.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIZoomImageView.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIZoomImageView.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIZoomImageView.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIZoomImageView.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIZoomImageView.d"],"deps-style":"makefile","signature":"816e9b21504c64396df180d862e5e2ee"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIActivityIndicatorView+QMUI.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UIActivityIndicatorView+QMUI.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIActivityIndicatorView+QMUI.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UIActivityIndicatorView+QMUI.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UIActivityIndicatorView+QMUI.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIActivityIndicatorView+QMUI.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIActivityIndicatorView+QMUI.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIActivityIndicatorView+QMUI.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UIActivityIndicatorView+QMUI.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIActivityIndicatorView+QMUI.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIActivityIndicatorView+QMUI.d"],"deps-style":"makefile","signature":"6e92469ae19ea3583adacd975ac25ba3"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIBarItem+QMUI.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UIBarItem+QMUI.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIBarItem+QMUI.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UIBarItem+QMUI.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UIBarItem+QMUI.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIBarItem+QMUI.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIBarItem+QMUI.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIBarItem+QMUI.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UIBarItem+QMUI.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIBarItem+QMUI.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIBarItem+QMUI.d"],"deps-style":"makefile","signature":"970d513e643acc531fcbc9a5336620d9"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIBarItem+QMUIBadge.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIBadge/UIBarItem+QMUIBadge.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIBarItem+QMUIBadge.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIBadge/UIBarItem+QMUIBadge.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIBadge/UIBarItem+QMUIBadge.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIBarItem+QMUIBadge.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIBarItem+QMUIBadge.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIBarItem+QMUIBadge.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIBadge/UIBarItem+QMUIBadge.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIBarItem+QMUIBadge.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIBarItem+QMUIBadge.d"],"deps-style":"makefile","signature":"7401fe44dade1e6441efcbd824dc3ecd"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIBezierPath+QMUI.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UIBezierPath+QMUI.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIBezierPath+QMUI.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UIBezierPath+QMUI.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UIBezierPath+QMUI.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIBezierPath+QMUI.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIBezierPath+QMUI.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIBezierPath+QMUI.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UIBezierPath+QMUI.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIBezierPath+QMUI.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIBezierPath+QMUI.d"],"deps-style":"makefile","signature":"56e96d37b8f8bdfac70977e9a487c701"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIButton+QMUI.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UIButton+QMUI.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIButton+QMUI.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UIButton+QMUI.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UIButton+QMUI.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIButton+QMUI.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIButton+QMUI.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIButton+QMUI.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UIButton+QMUI.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIButton+QMUI.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIButton+QMUI.d"],"deps-style":"makefile","signature":"67457684bbef99535c4d8586ec836273"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UICollectionView+QMUI.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UICollectionView+QMUI.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UICollectionView+QMUI.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UICollectionView+QMUI.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UICollectionView+QMUI.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UICollectionView+QMUI.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UICollectionView+QMUI.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UICollectionView+QMUI.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UICollectionView+QMUI.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UICollectionView+QMUI.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UICollectionView+QMUI.d"],"deps-style":"makefile","signature":"44f21ff88176fe4c37e2398c31642a9d"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UICollectionView+QMUICellSizeKeyCache.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUICellSizeKeyCache/UICollectionView+QMUICellSizeKeyCache.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UICollectionView+QMUICellSizeKeyCache.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUICellSizeKeyCache/UICollectionView+QMUICellSizeKeyCache.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUICellSizeKeyCache/UICollectionView+QMUICellSizeKeyCache.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UICollectionView+QMUICellSizeKeyCache.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UICollectionView+QMUICellSizeKeyCache.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UICollectionView+QMUICellSizeKeyCache.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUICellSizeKeyCache/UICollectionView+QMUICellSizeKeyCache.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UICollectionView+QMUICellSizeKeyCache.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UICollectionView+QMUICellSizeKeyCache.d"],"deps-style":"makefile","signature":"2de4c111ec59dcf61c6ca96c056b3600"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIColor+QMUI.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UIColor+QMUI.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIColor+QMUI.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UIColor+QMUI.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UIColor+QMUI.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIColor+QMUI.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIColor+QMUI.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIColor+QMUI.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UIColor+QMUI.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIColor+QMUI.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIColor+QMUI.d"],"deps-style":"makefile","signature":"d9b4196a303befc2caedb41fa25402cc"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIColor+QMUITheme.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUITheme/UIColor+QMUITheme.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIColor+QMUITheme.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUITheme/UIColor+QMUITheme.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUITheme/UIColor+QMUITheme.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIColor+QMUITheme.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIColor+QMUITheme.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIColor+QMUITheme.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUITheme/UIColor+QMUITheme.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIColor+QMUITheme.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIColor+QMUITheme.d"],"deps-style":"makefile","signature":"5255762dafe2acf4e135fb4ce1ef4709"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIControl+QMUI.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UIControl+QMUI.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIControl+QMUI.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UIControl+QMUI.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UIControl+QMUI.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIControl+QMUI.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIControl+QMUI.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIControl+QMUI.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UIControl+QMUI.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIControl+QMUI.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIControl+QMUI.d"],"deps-style":"makefile","signature":"5cb094f70e12f421c17291fc5b87e260"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIFont+QMUI.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UIFont+QMUI.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIFont+QMUI.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UIFont+QMUI.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UIFont+QMUI.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIFont+QMUI.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIFont+QMUI.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIFont+QMUI.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UIFont+QMUI.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIFont+QMUI.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIFont+QMUI.d"],"deps-style":"makefile","signature":"e765b4e0dc7685fa6746f26169404b11"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIGestureRecognizer+QMUI.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UIGestureRecognizer+QMUI.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIGestureRecognizer+QMUI.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UIGestureRecognizer+QMUI.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UIGestureRecognizer+QMUI.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIGestureRecognizer+QMUI.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIGestureRecognizer+QMUI.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIGestureRecognizer+QMUI.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UIGestureRecognizer+QMUI.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIGestureRecognizer+QMUI.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIGestureRecognizer+QMUI.d"],"deps-style":"makefile","signature":"d907030f626dfd50b7e40fa31679480f"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIImage+QMUI.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UIImage+QMUI.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIImage+QMUI.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UIImage+QMUI.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UIImage+QMUI.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIImage+QMUI.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIImage+QMUI.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIImage+QMUI.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UIImage+QMUI.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIImage+QMUI.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIImage+QMUI.d"],"deps-style":"makefile","signature":"635e677c816fbea77e92991bb4bc0a88"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIImage+QMUITheme.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUITheme/UIImage+QMUITheme.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIImage+QMUITheme.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUITheme/UIImage+QMUITheme.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUITheme/UIImage+QMUITheme.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIImage+QMUITheme.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIImage+QMUITheme.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIImage+QMUITheme.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUITheme/UIImage+QMUITheme.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIImage+QMUITheme.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIImage+QMUITheme.d"],"deps-style":"makefile","signature":"b2d6731def1692ce435a9df84a1cdb5b"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIImageView+QMUI.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UIImageView+QMUI.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIImageView+QMUI.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UIImageView+QMUI.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UIImageView+QMUI.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIImageView+QMUI.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIImageView+QMUI.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIImageView+QMUI.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UIImageView+QMUI.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIImageView+QMUI.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIImageView+QMUI.d"],"deps-style":"makefile","signature":"f054e5ccb9d6b0956f133d11bfb51be8"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIInterface+QMUI.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UIInterface+QMUI.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIInterface+QMUI.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UIInterface+QMUI.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UIInterface+QMUI.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIInterface+QMUI.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIInterface+QMUI.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIInterface+QMUI.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UIInterface+QMUI.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIInterface+QMUI.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIInterface+QMUI.d"],"deps-style":"makefile","signature":"d5688bf4c2119a76327088b4ad624cbb"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UILabel+QMUI.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UILabel+QMUI.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UILabel+QMUI.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UILabel+QMUI.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UILabel+QMUI.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UILabel+QMUI.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UILabel+QMUI.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UILabel+QMUI.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UILabel+QMUI.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UILabel+QMUI.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UILabel+QMUI.d"],"deps-style":"makefile","signature":"351041bd916cee17d10c14f29a8ead52"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIMenuController+QMUI.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UIMenuController+QMUI.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIMenuController+QMUI.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UIMenuController+QMUI.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UIMenuController+QMUI.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIMenuController+QMUI.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIMenuController+QMUI.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIMenuController+QMUI.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UIMenuController+QMUI.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIMenuController+QMUI.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIMenuController+QMUI.d"],"deps-style":"makefile","signature":"46442b10f29a267435792948a4b6d4b3"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UINavigationBar+QMUI.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UINavigationBar+QMUI.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UINavigationBar+QMUI.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UINavigationBar+QMUI.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UINavigationBar+QMUI.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UINavigationBar+QMUI.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UINavigationBar+QMUI.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UINavigationBar+QMUI.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UINavigationBar+QMUI.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UINavigationBar+QMUI.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UINavigationBar+QMUI.d"],"deps-style":"makefile","signature":"a0cabe6d0917148b4c3632c0c0501571"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UINavigationBar+Transition.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/NavigationBarTransition/UINavigationBar+Transition.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UINavigationBar+Transition.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/NavigationBarTransition/UINavigationBar+Transition.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/NavigationBarTransition/UINavigationBar+Transition.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UINavigationBar+Transition.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UINavigationBar+Transition.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UINavigationBar+Transition.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/NavigationBarTransition/UINavigationBar+Transition.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UINavigationBar+Transition.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UINavigationBar+Transition.d"],"deps-style":"makefile","signature":"8f5c7a90f4a6dd5991d005b55784a2f1"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UINavigationController+NavigationBarTransition.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/NavigationBarTransition/UINavigationController+NavigationBarTransition.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UINavigationController+NavigationBarTransition.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/NavigationBarTransition/UINavigationController+NavigationBarTransition.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/NavigationBarTransition/UINavigationController+NavigationBarTransition.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UINavigationController+NavigationBarTransition.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UINavigationController+NavigationBarTransition.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UINavigationController+NavigationBarTransition.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/NavigationBarTransition/UINavigationController+NavigationBarTransition.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UINavigationController+NavigationBarTransition.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UINavigationController+NavigationBarTransition.d"],"deps-style":"makefile","signature":"8aa51b038bf44f08bff432bbfe475ded"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UINavigationController+QMUI.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UINavigationController+QMUI.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UINavigationController+QMUI.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UINavigationController+QMUI.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UINavigationController+QMUI.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UINavigationController+QMUI.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UINavigationController+QMUI.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UINavigationController+QMUI.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UINavigationController+QMUI.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UINavigationController+QMUI.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UINavigationController+QMUI.d"],"deps-style":"makefile","signature":"3cc49ed204dcbe72591a55c43750a35b"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIScrollView+QMUI.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UIScrollView+QMUI.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIScrollView+QMUI.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UIScrollView+QMUI.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UIScrollView+QMUI.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIScrollView+QMUI.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIScrollView+QMUI.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIScrollView+QMUI.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UIScrollView+QMUI.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIScrollView+QMUI.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIScrollView+QMUI.d"],"deps-style":"makefile","signature":"f3a3799f07f0f145f2590aa7a9c7eb22"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UISearchBar+QMUI.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UISearchBar+QMUI.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UISearchBar+QMUI.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UISearchBar+QMUI.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UISearchBar+QMUI.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UISearchBar+QMUI.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UISearchBar+QMUI.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UISearchBar+QMUI.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UISearchBar+QMUI.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UISearchBar+QMUI.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UISearchBar+QMUI.d"],"deps-style":"makefile","signature":"7b19c4449800bc39eccaa24215176384"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UISearchController+QMUI.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UISearchController+QMUI.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UISearchController+QMUI.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UISearchController+QMUI.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UISearchController+QMUI.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UISearchController+QMUI.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UISearchController+QMUI.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UISearchController+QMUI.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UISearchController+QMUI.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UISearchController+QMUI.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UISearchController+QMUI.d"],"deps-style":"makefile","signature":"9d7fbcc255b55987de354bdc97f4ab4b"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UISwitch+QMUI.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UISwitch+QMUI.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UISwitch+QMUI.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UISwitch+QMUI.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UISwitch+QMUI.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UISwitch+QMUI.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UISwitch+QMUI.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UISwitch+QMUI.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UISwitch+QMUI.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UISwitch+QMUI.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UISwitch+QMUI.d"],"deps-style":"makefile","signature":"1ce14def75edbb86034319d7200fa87f"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UITabBar+QMUI.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UITabBar+QMUI.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UITabBar+QMUI.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UITabBar+QMUI.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UITabBar+QMUI.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UITabBar+QMUI.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UITabBar+QMUI.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UITabBar+QMUI.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UITabBar+QMUI.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UITabBar+QMUI.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UITabBar+QMUI.d"],"deps-style":"makefile","signature":"d438ca13eb658688694a751017a44710"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UITabBarItem+QMUI.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UITabBarItem+QMUI.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UITabBarItem+QMUI.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UITabBarItem+QMUI.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UITabBarItem+QMUI.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UITabBarItem+QMUI.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UITabBarItem+QMUI.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UITabBarItem+QMUI.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UITabBarItem+QMUI.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UITabBarItem+QMUI.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UITabBarItem+QMUI.d"],"deps-style":"makefile","signature":"2c12aa4412b268711af3e4d500fe838a"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UITableView+QMUI.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UITableView+QMUI.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UITableView+QMUI.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UITableView+QMUI.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UITableView+QMUI.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UITableView+QMUI.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UITableView+QMUI.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UITableView+QMUI.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UITableView+QMUI.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UITableView+QMUI.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UITableView+QMUI.d"],"deps-style":"makefile","signature":"327d06b6e016c2323d19759a344d08d0"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UITableView+QMUICellHeightKeyCache.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUICellHeightKeyCache/UITableView+QMUICellHeightKeyCache.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UITableView+QMUICellHeightKeyCache.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUICellHeightKeyCache/UITableView+QMUICellHeightKeyCache.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUICellHeightKeyCache/UITableView+QMUICellHeightKeyCache.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UITableView+QMUICellHeightKeyCache.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UITableView+QMUICellHeightKeyCache.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UITableView+QMUICellHeightKeyCache.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUICellHeightKeyCache/UITableView+QMUICellHeightKeyCache.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UITableView+QMUICellHeightKeyCache.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UITableView+QMUICellHeightKeyCache.d"],"deps-style":"makefile","signature":"a3ffb0af20cab754e778ef2a629050d4"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UITableView+QMUIStaticCell.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/StaticTableView/UITableView+QMUIStaticCell.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UITableView+QMUIStaticCell.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/StaticTableView/UITableView+QMUIStaticCell.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/StaticTableView/UITableView+QMUIStaticCell.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UITableView+QMUIStaticCell.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UITableView+QMUIStaticCell.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UITableView+QMUIStaticCell.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/StaticTableView/UITableView+QMUIStaticCell.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UITableView+QMUIStaticCell.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UITableView+QMUIStaticCell.d"],"deps-style":"makefile","signature":"a966f263f80712e7a0b3d5acc561e03f"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UITableViewCell+QMUI.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UITableViewCell+QMUI.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UITableViewCell+QMUI.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UITableViewCell+QMUI.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UITableViewCell+QMUI.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UITableViewCell+QMUI.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UITableViewCell+QMUI.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UITableViewCell+QMUI.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UITableViewCell+QMUI.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UITableViewCell+QMUI.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UITableViewCell+QMUI.d"],"deps-style":"makefile","signature":"4761e9a6d3390e9289d11b41a1aadce7"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UITextField+QMUI.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UITextField+QMUI.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UITextField+QMUI.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UITextField+QMUI.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UITextField+QMUI.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UITextField+QMUI.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UITextField+QMUI.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UITextField+QMUI.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UITextField+QMUI.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UITextField+QMUI.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UITextField+QMUI.d"],"deps-style":"makefile","signature":"4ee1814e11c58d5d9886b182469509cd"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UITextView+QMUI.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UITextView+QMUI.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UITextView+QMUI.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UITextView+QMUI.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UITextView+QMUI.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UITextView+QMUI.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UITextView+QMUI.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UITextView+QMUI.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UITextView+QMUI.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UITextView+QMUI.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UITextView+QMUI.d"],"deps-style":"makefile","signature":"96900d4dfd4c9669f1977a7753e4aa57"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UITraitCollection+QMUI.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UITraitCollection+QMUI.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UITraitCollection+QMUI.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UITraitCollection+QMUI.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UITraitCollection+QMUI.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UITraitCollection+QMUI.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UITraitCollection+QMUI.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UITraitCollection+QMUI.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UITraitCollection+QMUI.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UITraitCollection+QMUI.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UITraitCollection+QMUI.d"],"deps-style":"makefile","signature":"27e6490cfc10e7df9503835e395e580f"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIView+QMUI.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UIView+QMUI.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIView+QMUI.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UIView+QMUI.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UIView+QMUI.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIView+QMUI.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIView+QMUI.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIView+QMUI.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UIView+QMUI.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIView+QMUI.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIView+QMUI.d"],"deps-style":"makefile","signature":"e306cb3dcf09c2dcfe998661a2b70cde"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIView+QMUITheme.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUITheme/UIView+QMUITheme.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIView+QMUITheme.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUITheme/UIView+QMUITheme.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUITheme/UIView+QMUITheme.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIView+QMUITheme.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIView+QMUITheme.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIView+QMUITheme.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUITheme/UIView+QMUITheme.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIView+QMUITheme.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIView+QMUITheme.d"],"deps-style":"makefile","signature":"498e64a21da483aa0531d2b32f25d508"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIViewController+QMUI.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UIViewController+QMUI.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIViewController+QMUI.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UIViewController+QMUI.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UIViewController+QMUI.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIViewController+QMUI.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIViewController+QMUI.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIViewController+QMUI.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UIViewController+QMUI.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIViewController+QMUI.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIViewController+QMUI.d"],"deps-style":"makefile","signature":"1452f84846548461ab1c5c49495f5765"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIViewController+QMUITheme.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUITheme/UIViewController+QMUITheme.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIViewController+QMUITheme.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUITheme/UIViewController+QMUITheme.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUITheme/UIViewController+QMUITheme.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIViewController+QMUITheme.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIViewController+QMUITheme.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIViewController+QMUITheme.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUITheme/UIViewController+QMUITheme.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIViewController+QMUITheme.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIViewController+QMUITheme.d"],"deps-style":"makefile","signature":"5ebd358a8c2a907d488fbc8f703dac03"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIVisualEffect+QMUITheme.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUITheme/UIVisualEffect+QMUITheme.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIVisualEffect+QMUITheme.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUITheme/UIVisualEffect+QMUITheme.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUITheme/UIVisualEffect+QMUITheme.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIVisualEffect+QMUITheme.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIVisualEffect+QMUITheme.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIVisualEffect+QMUITheme.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUITheme/UIVisualEffect+QMUITheme.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIVisualEffect+QMUITheme.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIVisualEffect+QMUITheme.d"],"deps-style":"makefile","signature":"ebfc61803d3f0881dd294b7d95e8bfe3"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIWindow+QMUI.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UIWindow+QMUI.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIWindow+QMUI.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UIWindow+QMUI.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UIWindow+QMUI.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--generated-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIWindow+QMUI.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios9.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=QMUIKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIWindow+QMUI.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIWindow+QMUI.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UIWindow+QMUI.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIWindow+QMUI.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIWindow+QMUI.d"],"deps-style":"makefile","signature":"bda90fffa6e661ce1199d23918815c6f"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/AssetLibrary/QMUIAsset.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIAsset.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/AssetLibrary/QMUIAsset.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIAsset.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/AssetLibrary/QMUIAsset.h/","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--HeadermapTaskProducer>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIAsset.h"]}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/AssetLibrary/QMUIAssetsGroup.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIAssetsGroup.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/AssetLibrary/QMUIAssetsGroup.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIAssetsGroup.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/AssetLibrary/QMUIAssetsGroup.h/","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--HeadermapTaskProducer>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIAssetsGroup.h"]}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/AssetLibrary/QMUIAssetsManager.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIAssetsManager.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/AssetLibrary/QMUIAssetsManager.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIAssetsManager.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/AssetLibrary/QMUIAssetsManager.h/","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--HeadermapTaskProducer>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIAssetsManager.h"]}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/CAAnimation+QMUI.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/CAAnimation+QMUI.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/CAAnimation+QMUI.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/CAAnimation+QMUI.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/CAAnimation+QMUI.h/","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--HeadermapTaskProducer>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/CAAnimation+QMUI.h"]}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/ImagePickerLibrary/QMUIAlbumViewController.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIAlbumViewController.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/ImagePickerLibrary/QMUIAlbumViewController.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIAlbumViewController.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/ImagePickerLibrary/QMUIAlbumViewController.h/","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--HeadermapTaskProducer>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIAlbumViewController.h"]}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/ImagePickerLibrary/QMUIImagePickerCollectionViewCell.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIImagePickerCollectionViewCell.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/ImagePickerLibrary/QMUIImagePickerCollectionViewCell.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIImagePickerCollectionViewCell.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/ImagePickerLibrary/QMUIImagePickerCollectionViewCell.h/","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--HeadermapTaskProducer>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIImagePickerCollectionViewCell.h"]}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/ImagePickerLibrary/QMUIImagePickerHelper.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIImagePickerHelper.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/ImagePickerLibrary/QMUIImagePickerHelper.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIImagePickerHelper.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/ImagePickerLibrary/QMUIImagePickerHelper.h/","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--HeadermapTaskProducer>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIImagePickerHelper.h"]}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/ImagePickerLibrary/QMUIImagePickerPreviewViewController.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIImagePickerPreviewViewController.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/ImagePickerLibrary/QMUIImagePickerPreviewViewController.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIImagePickerPreviewViewController.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/ImagePickerLibrary/QMUIImagePickerPreviewViewController.h/","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--HeadermapTaskProducer>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIImagePickerPreviewViewController.h"]}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/ImagePickerLibrary/QMUIImagePickerViewController.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIImagePickerViewController.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/ImagePickerLibrary/QMUIImagePickerViewController.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIImagePickerViewController.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/ImagePickerLibrary/QMUIImagePickerViewController.h/","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--HeadermapTaskProducer>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIImagePickerViewController.h"]}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/NavigationBarTransition/UINavigationBar+Transition.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UINavigationBar+Transition.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/NavigationBarTransition/UINavigationBar+Transition.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UINavigationBar+Transition.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/NavigationBarTransition/UINavigationBar+Transition.h/","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--HeadermapTaskProducer>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UINavigationBar+Transition.h"]}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/NavigationBarTransition/UINavigationController+NavigationBarTransition.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UINavigationController+NavigationBarTransition.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/NavigationBarTransition/UINavigationController+NavigationBarTransition.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UINavigationController+NavigationBarTransition.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/NavigationBarTransition/UINavigationController+NavigationBarTransition.h/","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--HeadermapTaskProducer>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UINavigationController+NavigationBarTransition.h"]}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIAlertController.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIAlertController.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIAlertController.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIAlertController.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIAlertController.h/","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--HeadermapTaskProducer>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIAlertController.h"]}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIAnimation/QMUIAnimationHelper.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIAnimationHelper.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIAnimation/QMUIAnimationHelper.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIAnimationHelper.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIAnimation/QMUIAnimationHelper.h/","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--HeadermapTaskProducer>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIAnimationHelper.h"]}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIAnimation/QMUIDisplayLinkAnimation.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIDisplayLinkAnimation.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIAnimation/QMUIDisplayLinkAnimation.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIDisplayLinkAnimation.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIAnimation/QMUIDisplayLinkAnimation.h/","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--HeadermapTaskProducer>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIDisplayLinkAnimation.h"]}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIAnimation/QMUIEasings.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIEasings.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIAnimation/QMUIEasings.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIEasings.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIAnimation/QMUIEasings.h/","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--HeadermapTaskProducer>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIEasings.h"]}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIBadge/UIBarItem+QMUIBadge.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UIBarItem+QMUIBadge.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIBadge/UIBarItem+QMUIBadge.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UIBarItem+QMUIBadge.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIBadge/UIBarItem+QMUIBadge.h/","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--HeadermapTaskProducer>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UIBarItem+QMUIBadge.h"]}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIButton/QMUIButton.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIButton.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIButton/QMUIButton.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIButton.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIButton/QMUIButton.h/","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--HeadermapTaskProducer>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIButton.h"]}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIButton/QMUIFillButton.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIFillButton.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIButton/QMUIFillButton.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIFillButton.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIButton/QMUIFillButton.h/","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--HeadermapTaskProducer>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIFillButton.h"]}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIButton/QMUIGhostButton.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIGhostButton.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIButton/QMUIGhostButton.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIGhostButton.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIButton/QMUIGhostButton.h/","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--HeadermapTaskProducer>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIGhostButton.h"]}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIButton/QMUILinkButton.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUILinkButton.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIButton/QMUILinkButton.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUILinkButton.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIButton/QMUILinkButton.h/","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--HeadermapTaskProducer>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUILinkButton.h"]}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIButton/QMUINavigationButton.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUINavigationButton.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIButton/QMUINavigationButton.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUINavigationButton.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIButton/QMUINavigationButton.h/","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--HeadermapTaskProducer>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUINavigationButton.h"]}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIButton/QMUIToolbarButton.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIToolbarButton.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIButton/QMUIToolbarButton.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIToolbarButton.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIButton/QMUIToolbarButton.h/","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--HeadermapTaskProducer>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIToolbarButton.h"]}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUICellHeightCache.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUICellHeightCache.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUICellHeightCache.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUICellHeightCache.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUICellHeightCache.h/","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--HeadermapTaskProducer>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUICellHeightCache.h"]}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUICellHeightKeyCache/QMUICellHeightKeyCache.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUICellHeightKeyCache.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUICellHeightKeyCache/QMUICellHeightKeyCache.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUICellHeightKeyCache.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUICellHeightKeyCache/QMUICellHeightKeyCache.h/","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--HeadermapTaskProducer>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUICellHeightKeyCache.h"]}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUICellHeightKeyCache/UITableView+QMUICellHeightKeyCache.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UITableView+QMUICellHeightKeyCache.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUICellHeightKeyCache/UITableView+QMUICellHeightKeyCache.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UITableView+QMUICellHeightKeyCache.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUICellHeightKeyCache/UITableView+QMUICellHeightKeyCache.h/","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--HeadermapTaskProducer>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UITableView+QMUICellHeightKeyCache.h"]}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUICellSizeKeyCache/QMUICellSizeKeyCache.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUICellSizeKeyCache.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUICellSizeKeyCache/QMUICellSizeKeyCache.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUICellSizeKeyCache.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUICellSizeKeyCache/QMUICellSizeKeyCache.h/","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--HeadermapTaskProducer>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUICellSizeKeyCache.h"]}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUICellSizeKeyCache/UICollectionView+QMUICellSizeKeyCache.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UICollectionView+QMUICellSizeKeyCache.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUICellSizeKeyCache/UICollectionView+QMUICellSizeKeyCache.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UICollectionView+QMUICellSizeKeyCache.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUICellSizeKeyCache/UICollectionView+QMUICellSizeKeyCache.h/","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--HeadermapTaskProducer>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UICollectionView+QMUICellSizeKeyCache.h"]}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUICollectionViewPagingLayout.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUICollectionViewPagingLayout.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUICollectionViewPagingLayout.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUICollectionViewPagingLayout.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUICollectionViewPagingLayout.h/","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--HeadermapTaskProducer>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUICollectionViewPagingLayout.h"]}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIConsole/QMUIConsole.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIConsole.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIConsole/QMUIConsole.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIConsole.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIConsole/QMUIConsole.h/","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--HeadermapTaskProducer>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIConsole.h"]}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIConsole/QMUIConsoleToolbar.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIConsoleToolbar.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIConsole/QMUIConsoleToolbar.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIConsoleToolbar.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIConsole/QMUIConsoleToolbar.h/","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--HeadermapTaskProducer>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIConsoleToolbar.h"]}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIConsole/QMUIConsoleViewController.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIConsoleViewController.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIConsole/QMUIConsoleViewController.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIConsoleViewController.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIConsole/QMUIConsoleViewController.h/","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--HeadermapTaskProducer>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIConsoleViewController.h"]}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIConsole/QMUILog+QMUIConsole.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUILog+QMUIConsole.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIConsole/QMUILog+QMUIConsole.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUILog+QMUIConsole.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIConsole/QMUILog+QMUIConsole.h/","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--HeadermapTaskProducer>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUILog+QMUIConsole.h"]}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIDialogViewController.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIDialogViewController.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIDialogViewController.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIDialogViewController.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIDialogViewController.h/","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--HeadermapTaskProducer>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIDialogViewController.h"]}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIEmotionInputManager.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIEmotionInputManager.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIEmotionInputManager.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIEmotionInputManager.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIEmotionInputManager.h/","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--HeadermapTaskProducer>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIEmotionInputManager.h"]}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIEmotionView.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIEmotionView.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIEmotionView.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIEmotionView.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIEmotionView.h/","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--HeadermapTaskProducer>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIEmotionView.h"]}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIEmptyView.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIEmptyView.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIEmptyView.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIEmptyView.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIEmptyView.h/","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--HeadermapTaskProducer>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIEmptyView.h"]}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIFloatLayoutView.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIFloatLayoutView.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIFloatLayoutView.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIFloatLayoutView.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIFloatLayoutView.h/","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--HeadermapTaskProducer>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIFloatLayoutView.h"]}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIGridView.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIGridView.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIGridView.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIGridView.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIGridView.h/","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--HeadermapTaskProducer>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIGridView.h"]}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIImagePreviewView/QMUIImagePreviewView.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIImagePreviewView.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIImagePreviewView/QMUIImagePreviewView.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIImagePreviewView.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIImagePreviewView/QMUIImagePreviewView.h/","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--HeadermapTaskProducer>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIImagePreviewView.h"]}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIImagePreviewView/QMUIImagePreviewViewController.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIImagePreviewViewController.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIImagePreviewView/QMUIImagePreviewViewController.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIImagePreviewViewController.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIImagePreviewView/QMUIImagePreviewViewController.h/","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--HeadermapTaskProducer>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIImagePreviewViewController.h"]}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIImagePreviewView/QMUIImagePreviewViewTransitionAnimator.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIImagePreviewViewTransitionAnimator.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIImagePreviewView/QMUIImagePreviewViewTransitionAnimator.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIImagePreviewViewTransitionAnimator.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIImagePreviewView/QMUIImagePreviewViewTransitionAnimator.h/","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--HeadermapTaskProducer>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIImagePreviewViewTransitionAnimator.h"]}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIKeyboardManager.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIKeyboardManager.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIKeyboardManager.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIKeyboardManager.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIKeyboardManager.h/","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--HeadermapTaskProducer>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIKeyboardManager.h"]}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUILabel.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUILabel.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUILabel.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUILabel.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUILabel.h/","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--HeadermapTaskProducer>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUILabel.h"]}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUILog/QMUILog.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUILog.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUILog/QMUILog.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUILog.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUILog/QMUILog.h/","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--HeadermapTaskProducer>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUILog.h"]}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUILog/QMUILogItem.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUILogItem.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUILog/QMUILogItem.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUILogItem.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUILog/QMUILogItem.h/","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--HeadermapTaskProducer>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUILogItem.h"]}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUILog/QMUILogNameManager.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUILogNameManager.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUILog/QMUILogNameManager.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUILogNameManager.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUILog/QMUILogNameManager.h/","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--HeadermapTaskProducer>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUILogNameManager.h"]}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUILog/QMUILogger.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUILogger.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUILog/QMUILogger.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUILogger.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUILog/QMUILogger.h/","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--HeadermapTaskProducer>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUILogger.h"]}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUILogManagerViewController.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUILogManagerViewController.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUILogManagerViewController.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUILogManagerViewController.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUILogManagerViewController.h/","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--HeadermapTaskProducer>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUILogManagerViewController.h"]}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUILogger+QMUIConfigurationTemplate.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUILogger+QMUIConfigurationTemplate.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUILogger+QMUIConfigurationTemplate.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUILogger+QMUIConfigurationTemplate.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUILogger+QMUIConfigurationTemplate.h/","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--HeadermapTaskProducer>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUILogger+QMUIConfigurationTemplate.h"]}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIMarqueeLabel.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIMarqueeLabel.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIMarqueeLabel.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIMarqueeLabel.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIMarqueeLabel.h/","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--HeadermapTaskProducer>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIMarqueeLabel.h"]}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIModalPresentationViewController.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIModalPresentationViewController.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIModalPresentationViewController.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIModalPresentationViewController.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIModalPresentationViewController.h/","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--HeadermapTaskProducer>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIModalPresentationViewController.h"]}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIMoreOperationController.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIMoreOperationController.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIMoreOperationController.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIMoreOperationController.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIMoreOperationController.h/","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--HeadermapTaskProducer>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIMoreOperationController.h"]}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIMultipleDelegates/NSObject+QMUIMultipleDelegates.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/NSObject+QMUIMultipleDelegates.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIMultipleDelegates/NSObject+QMUIMultipleDelegates.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/NSObject+QMUIMultipleDelegates.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIMultipleDelegates/NSObject+QMUIMultipleDelegates.h/","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--HeadermapTaskProducer>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/NSObject+QMUIMultipleDelegates.h"]}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIMultipleDelegates/QMUIMultipleDelegates.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIMultipleDelegates.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIMultipleDelegates/QMUIMultipleDelegates.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIMultipleDelegates.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIMultipleDelegates/QMUIMultipleDelegates.h/","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--HeadermapTaskProducer>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIMultipleDelegates.h"]}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUINavigationTitleView.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUINavigationTitleView.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUINavigationTitleView.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUINavigationTitleView.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUINavigationTitleView.h/","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--HeadermapTaskProducer>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUINavigationTitleView.h"]}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIOrderedDictionary.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIOrderedDictionary.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIOrderedDictionary.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIOrderedDictionary.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIOrderedDictionary.h/","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--HeadermapTaskProducer>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIOrderedDictionary.h"]}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIPieProgressView.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIPieProgressView.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIPieProgressView.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIPieProgressView.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIPieProgressView.h/","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--HeadermapTaskProducer>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIPieProgressView.h"]}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIPopupContainerView.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIPopupContainerView.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIPopupContainerView.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIPopupContainerView.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIPopupContainerView.h/","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--HeadermapTaskProducer>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIPopupContainerView.h"]}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIPopupMenuView/QMUIPopupMenuBaseItem.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIPopupMenuBaseItem.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIPopupMenuView/QMUIPopupMenuBaseItem.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIPopupMenuBaseItem.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIPopupMenuView/QMUIPopupMenuBaseItem.h/","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--HeadermapTaskProducer>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIPopupMenuBaseItem.h"]}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIPopupMenuView/QMUIPopupMenuButtonItem.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIPopupMenuButtonItem.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIPopupMenuView/QMUIPopupMenuButtonItem.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIPopupMenuButtonItem.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIPopupMenuView/QMUIPopupMenuButtonItem.h/","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--HeadermapTaskProducer>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIPopupMenuButtonItem.h"]}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIPopupMenuView/QMUIPopupMenuItemProtocol.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIPopupMenuItemProtocol.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIPopupMenuView/QMUIPopupMenuItemProtocol.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIPopupMenuItemProtocol.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIPopupMenuView/QMUIPopupMenuItemProtocol.h/","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--HeadermapTaskProducer>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIPopupMenuItemProtocol.h"]}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIPopupMenuView/QMUIPopupMenuView.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIPopupMenuView.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIPopupMenuView/QMUIPopupMenuView.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIPopupMenuView.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIPopupMenuView/QMUIPopupMenuView.h/","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--HeadermapTaskProducer>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIPopupMenuView.h"]}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIScrollAnimator/QMUINavigationBarScrollingAnimator.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUINavigationBarScrollingAnimator.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIScrollAnimator/QMUINavigationBarScrollingAnimator.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUINavigationBarScrollingAnimator.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIScrollAnimator/QMUINavigationBarScrollingAnimator.h/","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--HeadermapTaskProducer>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUINavigationBarScrollingAnimator.h"]}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIScrollAnimator/QMUINavigationBarScrollingSnapAnimator.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUINavigationBarScrollingSnapAnimator.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIScrollAnimator/QMUINavigationBarScrollingSnapAnimator.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUINavigationBarScrollingSnapAnimator.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIScrollAnimator/QMUINavigationBarScrollingSnapAnimator.h/","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--HeadermapTaskProducer>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUINavigationBarScrollingSnapAnimator.h"]}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIScrollAnimator/QMUIScrollAnimator.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIScrollAnimator.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIScrollAnimator/QMUIScrollAnimator.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIScrollAnimator.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIScrollAnimator/QMUIScrollAnimator.h/","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--HeadermapTaskProducer>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIScrollAnimator.h"]}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUISearchBar.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUISearchBar.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUISearchBar.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUISearchBar.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUISearchBar.h/","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--HeadermapTaskProducer>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUISearchBar.h"]}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUISearchController.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUISearchController.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUISearchController.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUISearchController.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUISearchController.h/","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--HeadermapTaskProducer>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUISearchController.h"]}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUISegmentedControl.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUISegmentedControl.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUISegmentedControl.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUISegmentedControl.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUISegmentedControl.h/","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--HeadermapTaskProducer>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUISegmentedControl.h"]}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUISlider.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUISlider.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUISlider.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUISlider.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUISlider.h/","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--HeadermapTaskProducer>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUISlider.h"]}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUITableView.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUITableView.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUITableView.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUITableView.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUITableView.h/","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--HeadermapTaskProducer>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUITableView.h"]}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUITableViewCell.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUITableViewCell.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUITableViewCell.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUITableViewCell.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUITableViewCell.h/","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--HeadermapTaskProducer>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUITableViewCell.h"]}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUITableViewHeaderFooterView.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUITableViewHeaderFooterView.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUITableViewHeaderFooterView.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUITableViewHeaderFooterView.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUITableViewHeaderFooterView.h/","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--HeadermapTaskProducer>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUITableViewHeaderFooterView.h"]}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUITableViewProtocols.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUITableViewProtocols.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUITableViewProtocols.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUITableViewProtocols.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUITableViewProtocols.h/","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--HeadermapTaskProducer>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUITableViewProtocols.h"]}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUITestView.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUITestView.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUITestView.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUITestView.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUITestView.h/","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--HeadermapTaskProducer>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUITestView.h"]}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUITextField.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUITextField.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUITextField.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUITextField.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUITextField.h/","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--HeadermapTaskProducer>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUITextField.h"]}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUITextView.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUITextView.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUITextView.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUITextView.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUITextView.h/","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--HeadermapTaskProducer>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUITextView.h"]}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUITheme/QMUITheme.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUITheme.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUITheme/QMUITheme.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUITheme.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUITheme/QMUITheme.h/","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--HeadermapTaskProducer>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUITheme.h"]}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUITheme/QMUIThemeManager.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIThemeManager.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUITheme/QMUIThemeManager.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIThemeManager.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUITheme/QMUIThemeManager.h/","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--HeadermapTaskProducer>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIThemeManager.h"]}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUITheme/QMUIThemeManagerCenter.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIThemeManagerCenter.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUITheme/QMUIThemeManagerCenter.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIThemeManagerCenter.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUITheme/QMUIThemeManagerCenter.h/","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--HeadermapTaskProducer>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIThemeManagerCenter.h"]}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUITheme/QMUIThemePrivate.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIThemePrivate.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUITheme/QMUIThemePrivate.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIThemePrivate.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUITheme/QMUIThemePrivate.h/","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--HeadermapTaskProducer>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIThemePrivate.h"]}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUITheme/UIColor+QMUITheme.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UIColor+QMUITheme.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUITheme/UIColor+QMUITheme.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UIColor+QMUITheme.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUITheme/UIColor+QMUITheme.h/","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--HeadermapTaskProducer>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UIColor+QMUITheme.h"]}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUITheme/UIImage+QMUITheme.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UIImage+QMUITheme.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUITheme/UIImage+QMUITheme.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UIImage+QMUITheme.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUITheme/UIImage+QMUITheme.h/","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--HeadermapTaskProducer>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UIImage+QMUITheme.h"]}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUITheme/UIView+QMUITheme.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UIView+QMUITheme.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUITheme/UIView+QMUITheme.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UIView+QMUITheme.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUITheme/UIView+QMUITheme.h/","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--HeadermapTaskProducer>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UIView+QMUITheme.h"]}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUITheme/UIViewController+QMUITheme.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UIViewController+QMUITheme.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUITheme/UIViewController+QMUITheme.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UIViewController+QMUITheme.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUITheme/UIViewController+QMUITheme.h/","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--HeadermapTaskProducer>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UIViewController+QMUITheme.h"]}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUITheme/UIVisualEffect+QMUITheme.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UIVisualEffect+QMUITheme.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUITheme/UIVisualEffect+QMUITheme.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UIVisualEffect+QMUITheme.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUITheme/UIVisualEffect+QMUITheme.h/","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--HeadermapTaskProducer>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UIVisualEffect+QMUITheme.h"]}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUITips.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUITips.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUITips.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUITips.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUITips.h/","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--HeadermapTaskProducer>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUITips.h"]}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIVisualEffectView.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIVisualEffectView.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIVisualEffectView.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIVisualEffectView.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIVisualEffectView.h/","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--HeadermapTaskProducer>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIVisualEffectView.h"]}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIWeakObjectContainer.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIWeakObjectContainer.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIWeakObjectContainer.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIWeakObjectContainer.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIWeakObjectContainer.h/","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--HeadermapTaskProducer>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIWeakObjectContainer.h"]}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIWindowSizeMonitor.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIWindowSizeMonitor.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIWindowSizeMonitor.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIWindowSizeMonitor.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIWindowSizeMonitor.h/","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--HeadermapTaskProducer>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIWindowSizeMonitor.h"]}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIZoomImageView.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIZoomImageView.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIZoomImageView.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIZoomImageView.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/QMUIZoomImageView.h/","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--HeadermapTaskProducer>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIZoomImageView.h"]}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/StaticTableView/QMUIStaticTableViewCellData.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIStaticTableViewCellData.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/StaticTableView/QMUIStaticTableViewCellData.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIStaticTableViewCellData.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/StaticTableView/QMUIStaticTableViewCellData.h/","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--HeadermapTaskProducer>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIStaticTableViewCellData.h"]}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/StaticTableView/QMUIStaticTableViewCellDataSource.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIStaticTableViewCellDataSource.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/StaticTableView/QMUIStaticTableViewCellDataSource.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIStaticTableViewCellDataSource.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/StaticTableView/QMUIStaticTableViewCellDataSource.h/","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--HeadermapTaskProducer>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIStaticTableViewCellDataSource.h"]}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/StaticTableView/UITableView+QMUIStaticCell.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UITableView+QMUIStaticCell.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/StaticTableView/UITableView+QMUIStaticCell.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UITableView+QMUIStaticCell.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/StaticTableView/UITableView+QMUIStaticCell.h/","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--HeadermapTaskProducer>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UITableView+QMUIStaticCell.h"]}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/ToastView/QMUIToastAnimator.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIToastAnimator.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/ToastView/QMUIToastAnimator.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIToastAnimator.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/ToastView/QMUIToastAnimator.h/","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--HeadermapTaskProducer>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIToastAnimator.h"]}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/ToastView/QMUIToastBackgroundView.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIToastBackgroundView.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/ToastView/QMUIToastBackgroundView.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIToastBackgroundView.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/ToastView/QMUIToastBackgroundView.h/","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--HeadermapTaskProducer>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIToastBackgroundView.h"]}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/ToastView/QMUIToastContentView.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIToastContentView.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/ToastView/QMUIToastContentView.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIToastContentView.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/ToastView/QMUIToastContentView.h/","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--HeadermapTaskProducer>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIToastContentView.h"]}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/ToastView/QMUIToastView.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIToastView.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/ToastView/QMUIToastView.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIToastView.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIComponents/ToastView/QMUIToastView.h/","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--HeadermapTaskProducer>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIToastView.h"]}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUICore/QMUICommonDefines.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUICommonDefines.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUICore/QMUICommonDefines.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUICommonDefines.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUICore/QMUICommonDefines.h/","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--HeadermapTaskProducer>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUICommonDefines.h"]}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUICore/QMUIConfiguration.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIConfiguration.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUICore/QMUIConfiguration.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIConfiguration.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUICore/QMUIConfiguration.h/","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--HeadermapTaskProducer>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIConfiguration.h"]}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUICore/QMUIConfigurationMacros.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIConfigurationMacros.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUICore/QMUIConfigurationMacros.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIConfigurationMacros.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUICore/QMUIConfigurationMacros.h/","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--HeadermapTaskProducer>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIConfigurationMacros.h"]}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUICore/QMUICore.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUICore.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUICore/QMUICore.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUICore.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUICore/QMUICore.h/","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--HeadermapTaskProducer>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUICore.h"]}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUICore/QMUIHelper.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIHelper.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUICore/QMUIHelper.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIHelper.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUICore/QMUIHelper.h/","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--HeadermapTaskProducer>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIHelper.h"]}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUICore/QMUILab.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUILab.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUICore/QMUILab.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUILab.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUICore/QMUILab.h/","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--HeadermapTaskProducer>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUILab.h"]}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUICore/QMUIRuntime.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIRuntime.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUICore/QMUIRuntime.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIRuntime.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUICore/QMUIRuntime.h/","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--HeadermapTaskProducer>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIRuntime.h"]}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIKit.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIKit.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIKit.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIKit.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIKit.h/","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--HeadermapTaskProducer>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIKit.h"]}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIMainFrame/QMUICommonTableViewController.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUICommonTableViewController.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIMainFrame/QMUICommonTableViewController.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUICommonTableViewController.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIMainFrame/QMUICommonTableViewController.h/","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--HeadermapTaskProducer>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUICommonTableViewController.h"]}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIMainFrame/QMUICommonViewController.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUICommonViewController.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIMainFrame/QMUICommonViewController.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUICommonViewController.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIMainFrame/QMUICommonViewController.h/","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--HeadermapTaskProducer>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUICommonViewController.h"]}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIMainFrame/QMUINavigationController.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUINavigationController.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIMainFrame/QMUINavigationController.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUINavigationController.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIMainFrame/QMUINavigationController.h/","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--HeadermapTaskProducer>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUINavigationController.h"]}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIMainFrame/QMUITabBarViewController.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUITabBarViewController.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIMainFrame/QMUITabBarViewController.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUITabBarViewController.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/QMUIMainFrame/QMUITabBarViewController.h/","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--HeadermapTaskProducer>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUITabBarViewController.h"]}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/CALayer+QMUI.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/CALayer+QMUI.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/CALayer+QMUI.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/CALayer+QMUI.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/CALayer+QMUI.h/","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--HeadermapTaskProducer>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/CALayer+QMUI.h"]}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/NSArray+QMUI.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/NSArray+QMUI.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/NSArray+QMUI.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/NSArray+QMUI.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/NSArray+QMUI.h/","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--HeadermapTaskProducer>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/NSArray+QMUI.h"]}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/NSAttributedString+QMUI.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/NSAttributedString+QMUI.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/NSAttributedString+QMUI.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/NSAttributedString+QMUI.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/NSAttributedString+QMUI.h/","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--HeadermapTaskProducer>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/NSAttributedString+QMUI.h"]}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/NSCharacterSet+QMUI.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/NSCharacterSet+QMUI.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/NSCharacterSet+QMUI.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/NSCharacterSet+QMUI.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/NSCharacterSet+QMUI.h/","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--HeadermapTaskProducer>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/NSCharacterSet+QMUI.h"]}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/NSMethodSignature+QMUI.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/NSMethodSignature+QMUI.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/NSMethodSignature+QMUI.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/NSMethodSignature+QMUI.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/NSMethodSignature+QMUI.h/","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--HeadermapTaskProducer>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/NSMethodSignature+QMUI.h"]}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/NSNumber+QMUI.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/NSNumber+QMUI.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/NSNumber+QMUI.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/NSNumber+QMUI.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/NSNumber+QMUI.h/","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--HeadermapTaskProducer>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/NSNumber+QMUI.h"]}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/NSObject+QMUI.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/NSObject+QMUI.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/NSObject+QMUI.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/NSObject+QMUI.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/NSObject+QMUI.h/","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--HeadermapTaskProducer>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/NSObject+QMUI.h"]}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/NSParagraphStyle+QMUI.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/NSParagraphStyle+QMUI.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/NSParagraphStyle+QMUI.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/NSParagraphStyle+QMUI.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/NSParagraphStyle+QMUI.h/","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--HeadermapTaskProducer>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/NSParagraphStyle+QMUI.h"]}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/NSPointerArray+QMUI.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/NSPointerArray+QMUI.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/NSPointerArray+QMUI.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/NSPointerArray+QMUI.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/NSPointerArray+QMUI.h/","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--HeadermapTaskProducer>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/NSPointerArray+QMUI.h"]}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/NSString+QMUI.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/NSString+QMUI.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/NSString+QMUI.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/NSString+QMUI.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/NSString+QMUI.h/","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--HeadermapTaskProducer>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/NSString+QMUI.h"]}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/NSURL+QMUI.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/NSURL+QMUI.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/NSURL+QMUI.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/NSURL+QMUI.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/NSURL+QMUI.h/","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--HeadermapTaskProducer>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/NSURL+QMUI.h"]}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UIActivityIndicatorView+QMUI.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UIActivityIndicatorView+QMUI.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UIActivityIndicatorView+QMUI.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UIActivityIndicatorView+QMUI.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UIActivityIndicatorView+QMUI.h/","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--HeadermapTaskProducer>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UIActivityIndicatorView+QMUI.h"]}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UIBarItem+QMUI.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UIBarItem+QMUI.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UIBarItem+QMUI.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UIBarItem+QMUI.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UIBarItem+QMUI.h/","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--HeadermapTaskProducer>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UIBarItem+QMUI.h"]}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UIBezierPath+QMUI.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UIBezierPath+QMUI.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UIBezierPath+QMUI.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UIBezierPath+QMUI.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UIBezierPath+QMUI.h/","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--HeadermapTaskProducer>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UIBezierPath+QMUI.h"]}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UIButton+QMUI.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UIButton+QMUI.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UIButton+QMUI.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UIButton+QMUI.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UIButton+QMUI.h/","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--HeadermapTaskProducer>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UIButton+QMUI.h"]}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UICollectionView+QMUI.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UICollectionView+QMUI.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UICollectionView+QMUI.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UICollectionView+QMUI.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UICollectionView+QMUI.h/","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--HeadermapTaskProducer>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UICollectionView+QMUI.h"]}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UIColor+QMUI.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UIColor+QMUI.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UIColor+QMUI.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UIColor+QMUI.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UIColor+QMUI.h/","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--HeadermapTaskProducer>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UIColor+QMUI.h"]}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UIControl+QMUI.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UIControl+QMUI.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UIControl+QMUI.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UIControl+QMUI.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UIControl+QMUI.h/","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--HeadermapTaskProducer>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UIControl+QMUI.h"]}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UIFont+QMUI.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UIFont+QMUI.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UIFont+QMUI.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UIFont+QMUI.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UIFont+QMUI.h/","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--HeadermapTaskProducer>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UIFont+QMUI.h"]}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UIGestureRecognizer+QMUI.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UIGestureRecognizer+QMUI.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UIGestureRecognizer+QMUI.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UIGestureRecognizer+QMUI.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UIGestureRecognizer+QMUI.h/","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--HeadermapTaskProducer>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UIGestureRecognizer+QMUI.h"]}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UIImage+QMUI.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UIImage+QMUI.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UIImage+QMUI.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UIImage+QMUI.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UIImage+QMUI.h/","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--HeadermapTaskProducer>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UIImage+QMUI.h"]}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UIImageView+QMUI.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UIImageView+QMUI.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UIImageView+QMUI.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UIImageView+QMUI.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UIImageView+QMUI.h/","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--HeadermapTaskProducer>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UIImageView+QMUI.h"]}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UIInterface+QMUI.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UIInterface+QMUI.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UIInterface+QMUI.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UIInterface+QMUI.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UIInterface+QMUI.h/","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--HeadermapTaskProducer>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UIInterface+QMUI.h"]}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UILabel+QMUI.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UILabel+QMUI.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UILabel+QMUI.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UILabel+QMUI.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UILabel+QMUI.h/","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--HeadermapTaskProducer>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UILabel+QMUI.h"]}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UIMenuController+QMUI.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UIMenuController+QMUI.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UIMenuController+QMUI.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UIMenuController+QMUI.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UIMenuController+QMUI.h/","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--HeadermapTaskProducer>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UIMenuController+QMUI.h"]}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UINavigationBar+QMUI.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UINavigationBar+QMUI.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UINavigationBar+QMUI.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UINavigationBar+QMUI.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UINavigationBar+QMUI.h/","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--HeadermapTaskProducer>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UINavigationBar+QMUI.h"]}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UINavigationController+QMUI.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UINavigationController+QMUI.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UINavigationController+QMUI.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UINavigationController+QMUI.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UINavigationController+QMUI.h/","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--HeadermapTaskProducer>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UINavigationController+QMUI.h"]}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UIScrollView+QMUI.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UIScrollView+QMUI.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UIScrollView+QMUI.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UIScrollView+QMUI.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UIScrollView+QMUI.h/","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--HeadermapTaskProducer>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UIScrollView+QMUI.h"]}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UISearchBar+QMUI.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UISearchBar+QMUI.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UISearchBar+QMUI.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UISearchBar+QMUI.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UISearchBar+QMUI.h/","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--HeadermapTaskProducer>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UISearchBar+QMUI.h"]}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UISearchController+QMUI.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UISearchController+QMUI.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UISearchController+QMUI.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UISearchController+QMUI.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UISearchController+QMUI.h/","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--HeadermapTaskProducer>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UISearchController+QMUI.h"]}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UISwitch+QMUI.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UISwitch+QMUI.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UISwitch+QMUI.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UISwitch+QMUI.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UISwitch+QMUI.h/","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--HeadermapTaskProducer>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UISwitch+QMUI.h"]}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UITabBar+QMUI.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UITabBar+QMUI.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UITabBar+QMUI.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UITabBar+QMUI.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UITabBar+QMUI.h/","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--HeadermapTaskProducer>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UITabBar+QMUI.h"]}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UITabBarItem+QMUI.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UITabBarItem+QMUI.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UITabBarItem+QMUI.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UITabBarItem+QMUI.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UITabBarItem+QMUI.h/","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--HeadermapTaskProducer>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UITabBarItem+QMUI.h"]}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UITableView+QMUI.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UITableView+QMUI.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UITableView+QMUI.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UITableView+QMUI.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UITableView+QMUI.h/","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--HeadermapTaskProducer>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UITableView+QMUI.h"]}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UITableViewCell+QMUI.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UITableViewCell+QMUI.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UITableViewCell+QMUI.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UITableViewCell+QMUI.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UITableViewCell+QMUI.h/","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--HeadermapTaskProducer>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UITableViewCell+QMUI.h"]}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UITextField+QMUI.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UITextField+QMUI.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UITextField+QMUI.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UITextField+QMUI.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UITextField+QMUI.h/","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--HeadermapTaskProducer>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UITextField+QMUI.h"]}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UITextView+QMUI.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UITextView+QMUI.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UITextView+QMUI.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UITextView+QMUI.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UITextView+QMUI.h/","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--HeadermapTaskProducer>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UITextView+QMUI.h"]}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UITraitCollection+QMUI.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UITraitCollection+QMUI.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UITraitCollection+QMUI.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UITraitCollection+QMUI.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UITraitCollection+QMUI.h/","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--HeadermapTaskProducer>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UITraitCollection+QMUI.h"]}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UIView+QMUI.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UIView+QMUI.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UIView+QMUI.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UIView+QMUI.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UIView+QMUI.h/","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--HeadermapTaskProducer>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UIView+QMUI.h"]}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UIViewController+QMUI.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UIViewController+QMUI.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UIViewController+QMUI.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UIViewController+QMUI.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UIViewController+QMUI.h/","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--HeadermapTaskProducer>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UIViewController+QMUI.h"]}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UIWindow+QMUI.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UIWindow+QMUI.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UIWindow+QMUI.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UIWindow+QMUI.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/QMUIKit/QMUIKit/UIKitExtensions/UIWindow+QMUI.h/","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--HeadermapTaskProducer>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/UIWindow+QMUI.h"]}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-umbrella.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIKit-umbrella.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-umbrella.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIKit-umbrella.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-umbrella.h/","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--HeadermapTaskProducer>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers/QMUIKit-umbrella.h"]}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:CreateUniversalBinary /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/QMUIKit normal armv7 arm64": {"tool":"shell","description":"CreateUniversalBinary /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/QMUIKit normal armv7 arm64","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/Binary/QMUIKit","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/Binary/QMUIKit","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/QMUIKit","<Linked Binary /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/QMUIKit>"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/lipo","-create","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/Binary/QMUIKit","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/Binary/QMUIKit","-output","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/QMUIKit"],"env":{},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","signature":"4d14fa744e2979bb85a3b21569097f37"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:Ditto /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Modules/module.modulemap": {"tool":"file-copy","description":"Ditto /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Modules/module.modulemap","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap/","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--HeadermapTaskProducer>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Modules/module.modulemap"]}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:Ld /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/Binary/QMUIKit normal arm64": {"tool":"shell","description":"Ld /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/Binary/QMUIKit normal arm64","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/CAAnimation+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/CALayer+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/NSArray+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/NSAttributedString+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/NSCharacterSet+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/NSMethodSignature+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/NSNumber+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/NSObject+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/NSObject+QMUIMultipleDelegates.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/NSParagraphStyle+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/NSPointerArray+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/NSString+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/NSURL+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIAlbumViewController.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIAlertController.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIAnimationHelper.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIAsset.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIAssetsGroup.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIAssetsManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIButton.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUICellHeightCache.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUICellHeightKeyCache.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUICellSizeKeyCache.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUICollectionViewPagingLayout.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUICommonTableViewController.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUICommonViewController.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIConfiguration.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIConsole.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIConsoleToolbar.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIConsoleViewController.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIDialogViewController.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIDisplayLinkAnimation.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIEmotionInputManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIEmotionView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIEmptyView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIFillButton.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIFloatLayoutView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIGhostButton.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIGridView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIHelper.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIImagePickerCollectionViewCell.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIImagePickerHelper.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIImagePickerPreviewViewController.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIImagePickerViewController.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIImagePreviewView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIImagePreviewViewController.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIImagePreviewViewTransitionAnimator.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIKeyboardManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIKit-dummy.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUILabel.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUILinkButton.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUILog+QMUIConsole.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUILogger+QMUIConfigurationTemplate.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUILogger.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUILogItem.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUILogManagerViewController.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUILogNameManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIMarqueeLabel.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIModalPresentationViewController.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIMoreOperationController.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIMultipleDelegates.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUINavigationBarScrollingAnimator.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUINavigationBarScrollingSnapAnimator.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUINavigationButton.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUINavigationController.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUINavigationTitleView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIOrderedDictionary.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIPieProgressView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIPopupContainerView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIPopupMenuBaseItem.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIPopupMenuButtonItem.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIPopupMenuView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIRuntime.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIScrollAnimator.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUISearchBar.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUISearchController.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUISegmentedControl.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUISlider.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIStaticTableViewCellData.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIStaticTableViewCellDataSource.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUITabBarViewController.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUITableView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUITableViewCell.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUITableViewHeaderFooterView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUITestView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUITextField.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUITextView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIThemeManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIThemeManagerCenter.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIThemePrivate.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUITips.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIToastAnimator.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIToastBackgroundView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIToastContentView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIToastView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIToolbarButton.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIVisualEffectView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIWeakObjectContainer.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIWindowSizeMonitor.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIZoomImageView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIActivityIndicatorView+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIBarItem+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIBarItem+QMUIBadge.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIBezierPath+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIButton+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UICollectionView+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UICollectionView+QMUICellSizeKeyCache.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIColor+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIColor+QMUITheme.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIControl+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIFont+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIGestureRecognizer+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIImage+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIImage+QMUITheme.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIImageView+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIInterface+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UILabel+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIMenuController+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UINavigationBar+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UINavigationBar+Transition.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UINavigationController+NavigationBarTransition.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UINavigationController+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIScrollView+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UISearchBar+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UISearchController+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UISwitch+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UITabBar+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UITabBarItem+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UITableView+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UITableView+QMUICellHeightKeyCache.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UITableView+QMUIStaticCell.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UITableViewCell+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UITextField+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UITextView+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UITraitCollection+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIView+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIView+QMUITheme.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIViewController+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIViewController+QMUITheme.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIVisualEffect+QMUITheme.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/UIWindow+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIKit_vers.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIKit.LinkFileList","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/Binary/QMUIKit"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-target","arm64-apple-ios9.0","-dynamiclib","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-L/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-filelist","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIKit.LinkFileList","-install_name","@rpath/QMUIKit.framework/QMUIKit","-Xlinker","-rpath","-Xlinker","@executable_path/Frameworks","-Xlinker","-rpath","-Xlinker","@loader_path/Frameworks","-dead_strip","-Xlinker","-object_path_lto","-Xlinker","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIKit_lto.o","-Xlinker","-export_dynamic","-Xlinker","-no_deduplicate","-fembed-bitcode-marker","-fobjc-arc","-fobjc-link-runtime","-framework","CoreGraphics","-framework","Foundation","-framework","Photos","-framework","UIKit","-framework","CoreGraphics","-framework","Foundation","-framework","Photos","-framework","UIKit","-compatibility_version","1","-current_version","1","-Xlinker","-dependency_info","-Xlinker","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIKit_dependency_info.dat","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/Binary/QMUIKit"],"env":{},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIKit_dependency_info.dat"],"deps-style":"dependency-info","signature":"14b7d4dc8811900273bc26e298f0ca64"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:Ld /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/Binary/QMUIKit normal armv7": {"tool":"shell","description":"Ld /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/Binary/QMUIKit normal armv7","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/CAAnimation+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/CALayer+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/NSArray+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/NSAttributedString+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/NSCharacterSet+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/NSMethodSignature+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/NSNumber+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/NSObject+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/NSObject+QMUIMultipleDelegates.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/NSParagraphStyle+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/NSPointerArray+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/NSString+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/NSURL+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIAlbumViewController.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIAlertController.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIAnimationHelper.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIAsset.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIAssetsGroup.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIAssetsManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIButton.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUICellHeightCache.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUICellHeightKeyCache.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUICellSizeKeyCache.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUICollectionViewPagingLayout.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUICommonTableViewController.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUICommonViewController.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIConfiguration.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIConsole.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIConsoleToolbar.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIConsoleViewController.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIDialogViewController.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIDisplayLinkAnimation.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIEmotionInputManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIEmotionView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIEmptyView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIFillButton.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIFloatLayoutView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIGhostButton.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIGridView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIHelper.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIImagePickerCollectionViewCell.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIImagePickerHelper.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIImagePickerPreviewViewController.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIImagePickerViewController.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIImagePreviewView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIImagePreviewViewController.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIImagePreviewViewTransitionAnimator.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIKeyboardManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIKit-dummy.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUILabel.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUILinkButton.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUILog+QMUIConsole.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUILogger+QMUIConfigurationTemplate.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUILogger.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUILogItem.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUILogManagerViewController.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUILogNameManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIMarqueeLabel.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIModalPresentationViewController.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIMoreOperationController.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIMultipleDelegates.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUINavigationBarScrollingAnimator.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUINavigationBarScrollingSnapAnimator.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUINavigationButton.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUINavigationController.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUINavigationTitleView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIOrderedDictionary.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIPieProgressView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIPopupContainerView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIPopupMenuBaseItem.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIPopupMenuButtonItem.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIPopupMenuView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIRuntime.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIScrollAnimator.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUISearchBar.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUISearchController.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUISegmentedControl.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUISlider.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIStaticTableViewCellData.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIStaticTableViewCellDataSource.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUITabBarViewController.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUITableView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUITableViewCell.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUITableViewHeaderFooterView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUITestView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUITextField.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUITextView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIThemeManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIThemeManagerCenter.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIThemePrivate.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUITips.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIToastAnimator.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIToastBackgroundView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIToastContentView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIToastView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIToolbarButton.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIVisualEffectView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIWeakObjectContainer.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIWindowSizeMonitor.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIZoomImageView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIActivityIndicatorView+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIBarItem+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIBarItem+QMUIBadge.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIBezierPath+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIButton+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UICollectionView+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UICollectionView+QMUICellSizeKeyCache.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIColor+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIColor+QMUITheme.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIControl+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIFont+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIGestureRecognizer+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIImage+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIImage+QMUITheme.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIImageView+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIInterface+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UILabel+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIMenuController+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UINavigationBar+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UINavigationBar+Transition.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UINavigationController+NavigationBarTransition.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UINavigationController+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIScrollView+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UISearchBar+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UISearchController+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UISwitch+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UITabBar+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UITabBarItem+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UITableView+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UITableView+QMUICellHeightKeyCache.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UITableView+QMUIStaticCell.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UITableViewCell+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UITextField+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UITextView+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UITraitCollection+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIView+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIView+QMUITheme.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIViewController+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIViewController+QMUITheme.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIVisualEffect+QMUITheme.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/UIWindow+QMUI.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIKit_vers.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIKit.LinkFileList","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/Binary/QMUIKit"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-target","armv7-apple-ios9.0","-dynamiclib","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-L/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit","-filelist","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIKit.LinkFileList","-install_name","@rpath/QMUIKit.framework/QMUIKit","-Xlinker","-rpath","-Xlinker","@executable_path/Frameworks","-Xlinker","-rpath","-Xlinker","@loader_path/Frameworks","-dead_strip","-Xlinker","-object_path_lto","-Xlinker","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIKit_lto.o","-Xlinker","-export_dynamic","-Xlinker","-no_deduplicate","-fembed-bitcode-marker","-fobjc-arc","-fobjc-link-runtime","-framework","CoreGraphics","-framework","Foundation","-framework","Photos","-framework","UIKit","-framework","CoreGraphics","-framework","Foundation","-framework","Photos","-framework","UIKit","-compatibility_version","1","-current_version","1","-Xlinker","-dependency_info","-Xlinker","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIKit_dependency_info.dat","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/Binary/QMUIKit"],"env":{},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIKit_dependency_info.dat"],"deps-style":"dependency-info","signature":"7e43f464439d0605b38af28d3739b78b"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:MkDir /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework": {"tool":"mkdir","description":"MkDir /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework","inputs":["<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--start>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework","<MkDir /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework>"]}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:MkDir /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers": {"tool":"mkdir","description":"MkDir /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers","inputs":["<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--start>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers","<MkDir /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Headers>"]}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:ProcessInfoPlistFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Info.plist /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-Info.plist": {"tool":"info-plist-processor","description":"ProcessInfoPlistFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Info.plist /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-Info.plist","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/QMUIKit/QMUIKit-Info.plist","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/assetcatalog_generated_info.plist","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--HeadermapTaskProducer>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework/Info.plist"]}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:Touch /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework": {"tool":"shell","description":"Touch /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--Barrier-RegisterExecutionPolicyException>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--entry>"],"outputs":["<Touch /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework>"],"args":["/usr/bin/touch","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/QMUIKit/QMUIKit.framework"],"env":{},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","signature":"29118cc15ecfc98c16a17c46d2d03937"}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/QMUIKit_vers.c": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/QMUIKit_vers.c","inputs":["<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/DerivedSources/QMUIKit_vers.c"]}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIKit.LinkFileList": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIKit.LinkFileList","inputs":["<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/arm64/QMUIKit.LinkFileList"]}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIKit.LinkFileList": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIKit.LinkFileList","inputs":["<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--phase0-copy-headers>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/Objects-normal/armv7/QMUIKit.LinkFileList"]}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap","inputs":["<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--GeneratedFilesTaskProducer>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-non-framework-target-headers.hmap"]}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-target-headers.hmap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-target-headers.hmap","inputs":["<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--GeneratedFilesTaskProducer>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-all-target-headers.hmap"]}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap","inputs":["<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--GeneratedFilesTaskProducer>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-generated-files.hmap"]}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap","inputs":["<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--GeneratedFilesTaskProducer>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-own-target-headers.hmap"]}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap","inputs":["<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--GeneratedFilesTaskProducer>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit-project-headers.hmap"]}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit.hmap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit.hmap","inputs":["<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--GeneratedFilesTaskProducer>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/QMUIKit.hmap"]}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml","inputs":["<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--GeneratedFilesTaskProducer>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/all-product-headers.yaml"]}
"target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap","inputs":["<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--HeadermapTaskProducer>","<target-QMUIKit-285b96a559574e49fe0e1a40c03a5a8ee7242316018c4e78099a450c02f9d8f9--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/QMUIKit.build/module.modulemap"]}
"target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/NSBezierPath+RoundedCorners.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Private/NSBezierPath+RoundedCorners.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/NSBezierPath+RoundedCorners.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Private/NSBezierPath+RoundedCorners.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Private/NSBezierPath+RoundedCorners.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/module.modulemap","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--generated-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--phase0-copy-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/NSBezierPath+RoundedCorners.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=SDWebImage","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/NSBezierPath+RoundedCorners.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/NSBezierPath+RoundedCorners.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Private/NSBezierPath+RoundedCorners.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/NSBezierPath+RoundedCorners.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/NSBezierPath+RoundedCorners.d"],"deps-style":"makefile","signature":"b652d1f4c0a57685c5b19aa7be041a4e"}
"target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/NSButton+WebCache.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/NSButton+WebCache.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/NSButton+WebCache.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/NSButton+WebCache.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/NSButton+WebCache.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/module.modulemap","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--generated-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--phase0-copy-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/NSButton+WebCache.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=SDWebImage","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/NSButton+WebCache.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/NSButton+WebCache.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/NSButton+WebCache.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/NSButton+WebCache.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/NSButton+WebCache.d"],"deps-style":"makefile","signature":"d91673a145a1c19b11a25b766fa61de2"}
"target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/NSData+ImageContentType.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/NSData+ImageContentType.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/NSData+ImageContentType.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/NSData+ImageContentType.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/NSData+ImageContentType.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/module.modulemap","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--generated-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--phase0-copy-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/NSData+ImageContentType.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=SDWebImage","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/NSData+ImageContentType.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/NSData+ImageContentType.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/NSData+ImageContentType.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/NSData+ImageContentType.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/NSData+ImageContentType.d"],"deps-style":"makefile","signature":"714f0eeda6e75adbfc3db2f58575c090"}
"target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/NSImage+Compatibility.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/NSImage+Compatibility.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/NSImage+Compatibility.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/NSImage+Compatibility.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/NSImage+Compatibility.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/module.modulemap","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--generated-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--phase0-copy-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/NSImage+Compatibility.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=SDWebImage","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/NSImage+Compatibility.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/NSImage+Compatibility.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/NSImage+Compatibility.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/NSImage+Compatibility.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/NSImage+Compatibility.d"],"deps-style":"makefile","signature":"f6b4c0ec64a5de2585afdee679fd307b"}
"target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDAnimatedImage.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDAnimatedImage.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDAnimatedImage.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDAnimatedImage.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDAnimatedImage.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/module.modulemap","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--generated-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--phase0-copy-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDAnimatedImage.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=SDWebImage","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDAnimatedImage.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDAnimatedImage.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDAnimatedImage.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDAnimatedImage.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDAnimatedImage.d"],"deps-style":"makefile","signature":"8a2fe5a4bbe4a91c1ce8f2edcf716048"}
"target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDAnimatedImageRep.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDAnimatedImageRep.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDAnimatedImageRep.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDAnimatedImageRep.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDAnimatedImageRep.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/module.modulemap","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--generated-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--phase0-copy-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDAnimatedImageRep.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=SDWebImage","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDAnimatedImageRep.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDAnimatedImageRep.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDAnimatedImageRep.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDAnimatedImageRep.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDAnimatedImageRep.d"],"deps-style":"makefile","signature":"05a23f61fdfb1b4805c7d37abef0b1d6"}
"target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDAnimatedImageView+WebCache.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDAnimatedImageView+WebCache.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDAnimatedImageView+WebCache.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDAnimatedImageView+WebCache.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDAnimatedImageView+WebCache.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/module.modulemap","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--generated-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--phase0-copy-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDAnimatedImageView+WebCache.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=SDWebImage","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDAnimatedImageView+WebCache.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDAnimatedImageView+WebCache.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDAnimatedImageView+WebCache.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDAnimatedImageView+WebCache.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDAnimatedImageView+WebCache.d"],"deps-style":"makefile","signature":"cc80bb1551f65e2eb49622e54789ff15"}
"target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDAnimatedImageView.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDAnimatedImageView.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDAnimatedImageView.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDAnimatedImageView.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDAnimatedImageView.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/module.modulemap","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--generated-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--phase0-copy-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDAnimatedImageView.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=SDWebImage","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDAnimatedImageView.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDAnimatedImageView.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDAnimatedImageView.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDAnimatedImageView.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDAnimatedImageView.d"],"deps-style":"makefile","signature":"de90c80d4a7782e3d3ffb12ece4be127"}
"target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDAsyncBlockOperation.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Private/SDAsyncBlockOperation.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDAsyncBlockOperation.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Private/SDAsyncBlockOperation.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Private/SDAsyncBlockOperation.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/module.modulemap","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--generated-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--phase0-copy-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDAsyncBlockOperation.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=SDWebImage","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDAsyncBlockOperation.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDAsyncBlockOperation.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Private/SDAsyncBlockOperation.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDAsyncBlockOperation.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDAsyncBlockOperation.d"],"deps-style":"makefile","signature":"5ab700a61d4162cb43b1b0fe575b9a43"}
"target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDDiskCache.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDDiskCache.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDDiskCache.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDDiskCache.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDDiskCache.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/module.modulemap","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--generated-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--phase0-copy-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDDiskCache.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=SDWebImage","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDDiskCache.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDDiskCache.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDDiskCache.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDDiskCache.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDDiskCache.d"],"deps-style":"makefile","signature":"00ee82fdab06663e9a4da6d7ff0bc183"}
"target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDImageAPNGCoder.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDImageAPNGCoder.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDImageAPNGCoder.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDImageAPNGCoder.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDImageAPNGCoder.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/module.modulemap","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--generated-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--phase0-copy-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDImageAPNGCoder.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=SDWebImage","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDImageAPNGCoder.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDImageAPNGCoder.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDImageAPNGCoder.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDImageAPNGCoder.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDImageAPNGCoder.d"],"deps-style":"makefile","signature":"a7dc2e3e5fce2254c718176f4c76e32f"}
"target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDImageAssetManager.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Private/SDImageAssetManager.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDImageAssetManager.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Private/SDImageAssetManager.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Private/SDImageAssetManager.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/module.modulemap","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--generated-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--phase0-copy-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDImageAssetManager.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=SDWebImage","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDImageAssetManager.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDImageAssetManager.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Private/SDImageAssetManager.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDImageAssetManager.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDImageAssetManager.d"],"deps-style":"makefile","signature":"9255535dee90856226e79849ea2934c1"}
"target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDImageCache.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDImageCache.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDImageCache.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDImageCache.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDImageCache.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/module.modulemap","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--generated-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--phase0-copy-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDImageCache.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=SDWebImage","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDImageCache.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDImageCache.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDImageCache.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDImageCache.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDImageCache.d"],"deps-style":"makefile","signature":"c4288e101fad263ac72d9dad25c30219"}
"target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDImageCacheConfig.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDImageCacheConfig.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDImageCacheConfig.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDImageCacheConfig.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDImageCacheConfig.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/module.modulemap","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--generated-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--phase0-copy-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDImageCacheConfig.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=SDWebImage","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDImageCacheConfig.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDImageCacheConfig.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDImageCacheConfig.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDImageCacheConfig.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDImageCacheConfig.d"],"deps-style":"makefile","signature":"4d9d5e72c4cc468e001cd4dfa18c8196"}
"target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDImageCacheDefine.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDImageCacheDefine.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDImageCacheDefine.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDImageCacheDefine.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDImageCacheDefine.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/module.modulemap","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--generated-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--phase0-copy-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDImageCacheDefine.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=SDWebImage","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDImageCacheDefine.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDImageCacheDefine.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDImageCacheDefine.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDImageCacheDefine.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDImageCacheDefine.d"],"deps-style":"makefile","signature":"f9c070f8ab1389920350dbc800802852"}
"target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDImageCachesManager.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDImageCachesManager.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDImageCachesManager.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDImageCachesManager.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDImageCachesManager.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/module.modulemap","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--generated-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--phase0-copy-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDImageCachesManager.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=SDWebImage","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDImageCachesManager.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDImageCachesManager.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDImageCachesManager.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDImageCachesManager.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDImageCachesManager.d"],"deps-style":"makefile","signature":"64892b4600d50632b9650a1e0a008539"}
"target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDImageCachesManagerOperation.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Private/SDImageCachesManagerOperation.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDImageCachesManagerOperation.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Private/SDImageCachesManagerOperation.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Private/SDImageCachesManagerOperation.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/module.modulemap","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--generated-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--phase0-copy-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDImageCachesManagerOperation.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=SDWebImage","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDImageCachesManagerOperation.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDImageCachesManagerOperation.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Private/SDImageCachesManagerOperation.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDImageCachesManagerOperation.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDImageCachesManagerOperation.d"],"deps-style":"makefile","signature":"c37594010d7c7f527b476aa82dfa8cc5"}
"target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDImageCoder.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDImageCoder.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDImageCoder.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDImageCoder.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDImageCoder.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/module.modulemap","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--generated-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--phase0-copy-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDImageCoder.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=SDWebImage","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDImageCoder.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDImageCoder.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDImageCoder.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDImageCoder.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDImageCoder.d"],"deps-style":"makefile","signature":"6246f0f6b971c09db5db6534f8d836d2"}
"target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDImageCoderHelper.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDImageCoderHelper.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDImageCoderHelper.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDImageCoderHelper.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDImageCoderHelper.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/module.modulemap","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--generated-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--phase0-copy-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDImageCoderHelper.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=SDWebImage","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDImageCoderHelper.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDImageCoderHelper.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDImageCoderHelper.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDImageCoderHelper.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDImageCoderHelper.d"],"deps-style":"makefile","signature":"8213711a4f0b9abe3420d4951e413ff9"}
"target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDImageCodersManager.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDImageCodersManager.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDImageCodersManager.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDImageCodersManager.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDImageCodersManager.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/module.modulemap","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--generated-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--phase0-copy-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDImageCodersManager.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=SDWebImage","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDImageCodersManager.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDImageCodersManager.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDImageCodersManager.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDImageCodersManager.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDImageCodersManager.d"],"deps-style":"makefile","signature":"42b592cd01903c9545d8c2567ae7e07b"}
"target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDImageFrame.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDImageFrame.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDImageFrame.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDImageFrame.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDImageFrame.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/module.modulemap","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--generated-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--phase0-copy-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDImageFrame.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=SDWebImage","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDImageFrame.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDImageFrame.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDImageFrame.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDImageFrame.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDImageFrame.d"],"deps-style":"makefile","signature":"ab1bb84feb4db04e5738392de0cd1782"}
"target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDImageGIFCoder.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDImageGIFCoder.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDImageGIFCoder.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDImageGIFCoder.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDImageGIFCoder.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/module.modulemap","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--generated-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--phase0-copy-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDImageGIFCoder.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=SDWebImage","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDImageGIFCoder.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDImageGIFCoder.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDImageGIFCoder.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDImageGIFCoder.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDImageGIFCoder.d"],"deps-style":"makefile","signature":"cd427126282d2bae97cb4a9e61833b7a"}
"target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDImageGraphics.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDImageGraphics.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDImageGraphics.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDImageGraphics.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDImageGraphics.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/module.modulemap","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--generated-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--phase0-copy-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDImageGraphics.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=SDWebImage","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDImageGraphics.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDImageGraphics.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDImageGraphics.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDImageGraphics.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDImageGraphics.d"],"deps-style":"makefile","signature":"072157a224212d3c3a943e0d17f44c9c"}
"target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDImageHEICCoder.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDImageHEICCoder.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDImageHEICCoder.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDImageHEICCoder.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDImageHEICCoder.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/module.modulemap","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--generated-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--phase0-copy-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDImageHEICCoder.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=SDWebImage","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDImageHEICCoder.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDImageHEICCoder.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDImageHEICCoder.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDImageHEICCoder.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDImageHEICCoder.d"],"deps-style":"makefile","signature":"01c7abd22f6861ae8f89c0bd07913adb"}
"target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDImageIOAnimatedCoder.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDImageIOAnimatedCoder.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDImageIOAnimatedCoder.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDImageIOAnimatedCoder.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDImageIOAnimatedCoder.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/module.modulemap","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--generated-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--phase0-copy-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDImageIOAnimatedCoder.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=SDWebImage","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDImageIOAnimatedCoder.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDImageIOAnimatedCoder.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDImageIOAnimatedCoder.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDImageIOAnimatedCoder.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDImageIOAnimatedCoder.d"],"deps-style":"makefile","signature":"c26eb40e00fe957f2d0f8dc3194ef9cc"}
"target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDImageIOCoder.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDImageIOCoder.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDImageIOCoder.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDImageIOCoder.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDImageIOCoder.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/module.modulemap","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--generated-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--phase0-copy-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDImageIOCoder.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=SDWebImage","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDImageIOCoder.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDImageIOCoder.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDImageIOCoder.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDImageIOCoder.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDImageIOCoder.d"],"deps-style":"makefile","signature":"a7dc7a7a29397b2bea81711f93931ab4"}
"target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDImageLoader.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDImageLoader.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDImageLoader.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDImageLoader.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDImageLoader.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/module.modulemap","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--generated-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--phase0-copy-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDImageLoader.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=SDWebImage","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDImageLoader.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDImageLoader.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDImageLoader.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDImageLoader.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDImageLoader.d"],"deps-style":"makefile","signature":"8f6362ce53517f2064253156c34a96f4"}
"target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDImageLoadersManager.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDImageLoadersManager.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDImageLoadersManager.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDImageLoadersManager.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDImageLoadersManager.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/module.modulemap","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--generated-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--phase0-copy-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDImageLoadersManager.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=SDWebImage","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDImageLoadersManager.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDImageLoadersManager.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDImageLoadersManager.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDImageLoadersManager.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDImageLoadersManager.d"],"deps-style":"makefile","signature":"855c485645a0899084cdbe1e6145dbd4"}
"target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDImageTransformer.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDImageTransformer.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDImageTransformer.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDImageTransformer.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDImageTransformer.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/module.modulemap","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--generated-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--phase0-copy-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDImageTransformer.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=SDWebImage","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDImageTransformer.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDImageTransformer.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDImageTransformer.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDImageTransformer.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDImageTransformer.d"],"deps-style":"makefile","signature":"34ae141f689df511158977ebb8f7b967"}
"target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDInternalMacros.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Private/SDInternalMacros.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDInternalMacros.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Private/SDInternalMacros.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Private/SDInternalMacros.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/module.modulemap","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--generated-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--phase0-copy-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDInternalMacros.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=SDWebImage","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDInternalMacros.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDInternalMacros.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Private/SDInternalMacros.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDInternalMacros.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDInternalMacros.d"],"deps-style":"makefile","signature":"92b969bcf93a5bdd1e363f141d7eab53"}
"target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDMemoryCache.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDMemoryCache.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDMemoryCache.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDMemoryCache.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDMemoryCache.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/module.modulemap","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--generated-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--phase0-copy-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDMemoryCache.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=SDWebImage","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDMemoryCache.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDMemoryCache.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDMemoryCache.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDMemoryCache.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDMemoryCache.d"],"deps-style":"makefile","signature":"e40fe33156617b8d3b10819b2e2f2712"}
"target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDWeakProxy.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Private/SDWeakProxy.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDWeakProxy.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Private/SDWeakProxy.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Private/SDWeakProxy.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/module.modulemap","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--generated-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--phase0-copy-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDWeakProxy.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=SDWebImage","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDWeakProxy.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDWeakProxy.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Private/SDWeakProxy.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDWeakProxy.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDWeakProxy.d"],"deps-style":"makefile","signature":"753ab25dcd3cb4b54195d988f5ecb972"}
"target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDWebImage-dummy.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-dummy.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDWebImage-dummy.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-dummy.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-dummy.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/module.modulemap","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--generated-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--phase0-copy-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDWebImage-dummy.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=SDWebImage","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDWebImage-dummy.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDWebImage-dummy.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-dummy.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDWebImage-dummy.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDWebImage-dummy.d"],"deps-style":"makefile","signature":"d6af2585f071cb446a87e02b62b069a6"}
"target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDWebImageCacheKeyFilter.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDWebImageCacheKeyFilter.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDWebImageCacheKeyFilter.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDWebImageCacheKeyFilter.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDWebImageCacheKeyFilter.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/module.modulemap","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--generated-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--phase0-copy-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDWebImageCacheKeyFilter.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=SDWebImage","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDWebImageCacheKeyFilter.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDWebImageCacheKeyFilter.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDWebImageCacheKeyFilter.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDWebImageCacheKeyFilter.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDWebImageCacheKeyFilter.d"],"deps-style":"makefile","signature":"9d031d46a27c808e13a9d14307c7fc4e"}
"target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDWebImageCacheSerializer.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDWebImageCacheSerializer.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDWebImageCacheSerializer.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDWebImageCacheSerializer.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDWebImageCacheSerializer.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/module.modulemap","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--generated-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--phase0-copy-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDWebImageCacheSerializer.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=SDWebImage","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDWebImageCacheSerializer.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDWebImageCacheSerializer.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDWebImageCacheSerializer.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDWebImageCacheSerializer.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDWebImageCacheSerializer.d"],"deps-style":"makefile","signature":"b810202293b0501c25f87d5a2ca57e6c"}
"target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDWebImageCompat.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDWebImageCompat.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDWebImageCompat.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDWebImageCompat.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDWebImageCompat.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/module.modulemap","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--generated-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--phase0-copy-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDWebImageCompat.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=SDWebImage","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDWebImageCompat.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDWebImageCompat.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDWebImageCompat.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDWebImageCompat.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDWebImageCompat.d"],"deps-style":"makefile","signature":"cf83f4cb22cc97c585ad8af0944b3574"}
"target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDWebImageDefine.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDWebImageDefine.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDWebImageDefine.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDWebImageDefine.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDWebImageDefine.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/module.modulemap","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--generated-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--phase0-copy-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDWebImageDefine.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=SDWebImage","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDWebImageDefine.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDWebImageDefine.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDWebImageDefine.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDWebImageDefine.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDWebImageDefine.d"],"deps-style":"makefile","signature":"347da4d6fee538812174e49bb24aea59"}
"target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDWebImageDownloader.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDWebImageDownloader.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDWebImageDownloader.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDWebImageDownloader.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDWebImageDownloader.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/module.modulemap","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--generated-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--phase0-copy-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDWebImageDownloader.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=SDWebImage","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDWebImageDownloader.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDWebImageDownloader.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDWebImageDownloader.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDWebImageDownloader.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDWebImageDownloader.d"],"deps-style":"makefile","signature":"41e28115ff87f0a65e67733bf5a7569f"}
"target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDWebImageDownloaderConfig.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDWebImageDownloaderConfig.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDWebImageDownloaderConfig.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDWebImageDownloaderConfig.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDWebImageDownloaderConfig.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/module.modulemap","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--generated-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--phase0-copy-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDWebImageDownloaderConfig.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=SDWebImage","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDWebImageDownloaderConfig.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDWebImageDownloaderConfig.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDWebImageDownloaderConfig.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDWebImageDownloaderConfig.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDWebImageDownloaderConfig.d"],"deps-style":"makefile","signature":"d24f8f8096ede5078ac17283e5c7736a"}
"target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDWebImageDownloaderOperation.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDWebImageDownloaderOperation.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDWebImageDownloaderOperation.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDWebImageDownloaderOperation.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDWebImageDownloaderOperation.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/module.modulemap","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--generated-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--phase0-copy-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDWebImageDownloaderOperation.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=SDWebImage","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDWebImageDownloaderOperation.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDWebImageDownloaderOperation.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDWebImageDownloaderOperation.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDWebImageDownloaderOperation.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDWebImageDownloaderOperation.d"],"deps-style":"makefile","signature":"d6b0d13aa05695feeacd8dca614aafab"}
"target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDWebImageDownloaderRequestModifier.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDWebImageDownloaderRequestModifier.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDWebImageDownloaderRequestModifier.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDWebImageDownloaderRequestModifier.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDWebImageDownloaderRequestModifier.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/module.modulemap","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--generated-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--phase0-copy-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDWebImageDownloaderRequestModifier.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=SDWebImage","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDWebImageDownloaderRequestModifier.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDWebImageDownloaderRequestModifier.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDWebImageDownloaderRequestModifier.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDWebImageDownloaderRequestModifier.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDWebImageDownloaderRequestModifier.d"],"deps-style":"makefile","signature":"42990764dc9d56931386dbc0ab4d0760"}
"target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDWebImageError.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDWebImageError.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDWebImageError.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDWebImageError.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDWebImageError.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/module.modulemap","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--generated-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--phase0-copy-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDWebImageError.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=SDWebImage","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDWebImageError.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDWebImageError.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDWebImageError.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDWebImageError.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDWebImageError.d"],"deps-style":"makefile","signature":"c1ef4ee8dee2444265590a3df2cca197"}
"target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDWebImageIndicator.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDWebImageIndicator.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDWebImageIndicator.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDWebImageIndicator.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDWebImageIndicator.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/module.modulemap","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--generated-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--phase0-copy-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDWebImageIndicator.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=SDWebImage","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDWebImageIndicator.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDWebImageIndicator.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDWebImageIndicator.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDWebImageIndicator.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDWebImageIndicator.d"],"deps-style":"makefile","signature":"c05ff8f6e0e6cba086c1e8fd6b28480c"}
"target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDWebImageManager.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDWebImageManager.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDWebImageManager.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDWebImageManager.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDWebImageManager.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/module.modulemap","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--generated-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--phase0-copy-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDWebImageManager.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=SDWebImage","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDWebImageManager.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDWebImageManager.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDWebImageManager.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDWebImageManager.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDWebImageManager.d"],"deps-style":"makefile","signature":"9885fbf0c8cfda903081d66a8a8925d4"}
"target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDWebImageOptionsProcessor.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDWebImageOptionsProcessor.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDWebImageOptionsProcessor.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDWebImageOptionsProcessor.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDWebImageOptionsProcessor.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/module.modulemap","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--generated-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--phase0-copy-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDWebImageOptionsProcessor.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=SDWebImage","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDWebImageOptionsProcessor.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDWebImageOptionsProcessor.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDWebImageOptionsProcessor.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDWebImageOptionsProcessor.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDWebImageOptionsProcessor.d"],"deps-style":"makefile","signature":"4488565f2a46ac3fce64d8e90dffa835"}
"target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDWebImagePrefetcher.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDWebImagePrefetcher.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDWebImagePrefetcher.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDWebImagePrefetcher.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDWebImagePrefetcher.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/module.modulemap","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--generated-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--phase0-copy-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDWebImagePrefetcher.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=SDWebImage","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDWebImagePrefetcher.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDWebImagePrefetcher.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDWebImagePrefetcher.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDWebImagePrefetcher.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDWebImagePrefetcher.d"],"deps-style":"makefile","signature":"cf450934d7853ec892394b19399e8fe9"}
"target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDWebImageTransition.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDWebImageTransition.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDWebImageTransition.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDWebImageTransition.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDWebImageTransition.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/module.modulemap","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--generated-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--phase0-copy-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDWebImageTransition.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=SDWebImage","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDWebImageTransition.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDWebImageTransition.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDWebImageTransition.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDWebImageTransition.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDWebImageTransition.d"],"deps-style":"makefile","signature":"464fbc037afab7094b801279d292c93b"}
"target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDWebImage_vers.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources/SDWebImage_vers.c normal arm64 c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDWebImage_vers.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources/SDWebImage_vers.c normal arm64 c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources/SDWebImage_vers.c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/module.modulemap","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--generated-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--phase0-copy-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDWebImage_vers.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c","-target","arm64-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=SDWebImage","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Werror=deprecated-objc-isa-usage","-Werror=objc-root-class","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDWebImage_vers.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDWebImage_vers.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources/SDWebImage_vers.c","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDWebImage_vers.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDWebImage_vers.d"],"deps-style":"makefile","signature":"d72e9e95e40dc6b93dac6183591cccc4"}
"target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/UIButton+WebCache.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/UIButton+WebCache.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/UIButton+WebCache.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/UIButton+WebCache.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/UIButton+WebCache.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/module.modulemap","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--generated-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--phase0-copy-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/UIButton+WebCache.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=SDWebImage","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/UIButton+WebCache.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/UIButton+WebCache.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/UIButton+WebCache.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/UIButton+WebCache.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/UIButton+WebCache.d"],"deps-style":"makefile","signature":"f883a581d77e3940c3be28845937f158"}
"target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/UIColor+HexString.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Private/UIColor+HexString.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/UIColor+HexString.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Private/UIColor+HexString.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Private/UIColor+HexString.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/module.modulemap","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--generated-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--phase0-copy-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/UIColor+HexString.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=SDWebImage","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/UIColor+HexString.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/UIColor+HexString.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Private/UIColor+HexString.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/UIColor+HexString.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/UIColor+HexString.d"],"deps-style":"makefile","signature":"8cc5e099f0f311773995bcb5f7bed842"}
"target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/UIImage+ForceDecode.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/UIImage+ForceDecode.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/UIImage+ForceDecode.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/UIImage+ForceDecode.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/UIImage+ForceDecode.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/module.modulemap","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--generated-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--phase0-copy-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/UIImage+ForceDecode.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=SDWebImage","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/UIImage+ForceDecode.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/UIImage+ForceDecode.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/UIImage+ForceDecode.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/UIImage+ForceDecode.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/UIImage+ForceDecode.d"],"deps-style":"makefile","signature":"a0ae2ec2439211c3e2c2a96319297c6d"}
"target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/UIImage+GIF.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/UIImage+GIF.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/UIImage+GIF.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/UIImage+GIF.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/UIImage+GIF.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/module.modulemap","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--generated-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--phase0-copy-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/UIImage+GIF.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=SDWebImage","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/UIImage+GIF.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/UIImage+GIF.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/UIImage+GIF.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/UIImage+GIF.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/UIImage+GIF.d"],"deps-style":"makefile","signature":"7202f96fc66d886ceafc7679c0dfc588"}
"target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/UIImage+MemoryCacheCost.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/UIImage+MemoryCacheCost.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/UIImage+MemoryCacheCost.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/UIImage+MemoryCacheCost.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/UIImage+MemoryCacheCost.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/module.modulemap","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--generated-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--phase0-copy-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/UIImage+MemoryCacheCost.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=SDWebImage","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/UIImage+MemoryCacheCost.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/UIImage+MemoryCacheCost.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/UIImage+MemoryCacheCost.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/UIImage+MemoryCacheCost.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/UIImage+MemoryCacheCost.d"],"deps-style":"makefile","signature":"74f02758b9f608e26322e6c0d34f8e64"}
"target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/UIImage+Metadata.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/UIImage+Metadata.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/UIImage+Metadata.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/UIImage+Metadata.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/UIImage+Metadata.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/module.modulemap","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--generated-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--phase0-copy-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/UIImage+Metadata.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=SDWebImage","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/UIImage+Metadata.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/UIImage+Metadata.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/UIImage+Metadata.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/UIImage+Metadata.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/UIImage+Metadata.d"],"deps-style":"makefile","signature":"8ed24e26953ce7d910a039865a82a1de"}
"target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/UIImage+MultiFormat.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/UIImage+MultiFormat.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/UIImage+MultiFormat.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/UIImage+MultiFormat.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/UIImage+MultiFormat.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/module.modulemap","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--generated-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--phase0-copy-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/UIImage+MultiFormat.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=SDWebImage","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/UIImage+MultiFormat.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/UIImage+MultiFormat.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/UIImage+MultiFormat.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/UIImage+MultiFormat.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/UIImage+MultiFormat.d"],"deps-style":"makefile","signature":"59a6088ed5c064891e706b4ac3b488aa"}
"target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/UIImage+Transform.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/UIImage+Transform.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/UIImage+Transform.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/UIImage+Transform.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/UIImage+Transform.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/module.modulemap","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--generated-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--phase0-copy-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/UIImage+Transform.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=SDWebImage","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/UIImage+Transform.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/UIImage+Transform.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/UIImage+Transform.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/UIImage+Transform.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/UIImage+Transform.d"],"deps-style":"makefile","signature":"7dc74f97363743632358dcf236ff8cec"}
"target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/UIImageView+HighlightedWebCache.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/UIImageView+HighlightedWebCache.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/UIImageView+HighlightedWebCache.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/UIImageView+HighlightedWebCache.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/UIImageView+HighlightedWebCache.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/module.modulemap","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--generated-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--phase0-copy-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/UIImageView+HighlightedWebCache.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=SDWebImage","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/UIImageView+HighlightedWebCache.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/UIImageView+HighlightedWebCache.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/UIImageView+HighlightedWebCache.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/UIImageView+HighlightedWebCache.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/UIImageView+HighlightedWebCache.d"],"deps-style":"makefile","signature":"cfa9fcdd13d1a3fe8449394a9ec4ba1b"}
"target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/UIImageView+WebCache.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/UIImageView+WebCache.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/UIImageView+WebCache.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/UIImageView+WebCache.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/UIImageView+WebCache.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/module.modulemap","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--generated-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--phase0-copy-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/UIImageView+WebCache.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=SDWebImage","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/UIImageView+WebCache.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/UIImageView+WebCache.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/UIImageView+WebCache.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/UIImageView+WebCache.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/UIImageView+WebCache.d"],"deps-style":"makefile","signature":"bdb076afaf80dd986b271b61c918a381"}
"target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/UIView+WebCache.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/UIView+WebCache.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/UIView+WebCache.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/UIView+WebCache.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/UIView+WebCache.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/module.modulemap","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--generated-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--phase0-copy-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/UIView+WebCache.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=SDWebImage","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/UIView+WebCache.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/UIView+WebCache.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/UIView+WebCache.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/UIView+WebCache.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/UIView+WebCache.d"],"deps-style":"makefile","signature":"fc2ce5bf961535a470585f0b0ff2f29c"}
"target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/UIView+WebCacheOperation.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/UIView+WebCacheOperation.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/UIView+WebCacheOperation.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/UIView+WebCacheOperation.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/UIView+WebCacheOperation.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/module.modulemap","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--generated-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--phase0-copy-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/UIView+WebCacheOperation.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=SDWebImage","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/UIView+WebCacheOperation.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/UIView+WebCacheOperation.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/UIView+WebCacheOperation.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/UIView+WebCacheOperation.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/UIView+WebCacheOperation.d"],"deps-style":"makefile","signature":"7d1717c128a98b1233c105f76b52a4d1"}
"target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/NSBezierPath+RoundedCorners.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Private/NSBezierPath+RoundedCorners.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/NSBezierPath+RoundedCorners.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Private/NSBezierPath+RoundedCorners.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Private/NSBezierPath+RoundedCorners.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/module.modulemap","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--generated-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--phase0-copy-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/NSBezierPath+RoundedCorners.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=SDWebImage","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/NSBezierPath+RoundedCorners.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/NSBezierPath+RoundedCorners.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Private/NSBezierPath+RoundedCorners.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/NSBezierPath+RoundedCorners.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/NSBezierPath+RoundedCorners.d"],"deps-style":"makefile","signature":"5d2c5d3e6d6bded2eddfcb4f9cd1747d"}
"target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/NSButton+WebCache.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/NSButton+WebCache.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/NSButton+WebCache.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/NSButton+WebCache.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/NSButton+WebCache.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/module.modulemap","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--generated-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--phase0-copy-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/NSButton+WebCache.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=SDWebImage","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/NSButton+WebCache.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/NSButton+WebCache.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/NSButton+WebCache.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/NSButton+WebCache.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/NSButton+WebCache.d"],"deps-style":"makefile","signature":"5703afa946291e317c5d5dcce6b1ab3d"}
"target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/NSData+ImageContentType.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/NSData+ImageContentType.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/NSData+ImageContentType.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/NSData+ImageContentType.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/NSData+ImageContentType.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/module.modulemap","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--generated-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--phase0-copy-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/NSData+ImageContentType.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=SDWebImage","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/NSData+ImageContentType.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/NSData+ImageContentType.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/NSData+ImageContentType.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/NSData+ImageContentType.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/NSData+ImageContentType.d"],"deps-style":"makefile","signature":"9b991ba3c57e0d499fab11e26b0cb16c"}
"target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/NSImage+Compatibility.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/NSImage+Compatibility.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/NSImage+Compatibility.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/NSImage+Compatibility.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/NSImage+Compatibility.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/module.modulemap","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--generated-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--phase0-copy-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/NSImage+Compatibility.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=SDWebImage","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/NSImage+Compatibility.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/NSImage+Compatibility.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/NSImage+Compatibility.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/NSImage+Compatibility.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/NSImage+Compatibility.d"],"deps-style":"makefile","signature":"c27c26987b1b99f2528ce8f086b36080"}
"target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDAnimatedImage.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDAnimatedImage.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDAnimatedImage.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDAnimatedImage.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDAnimatedImage.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/module.modulemap","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--generated-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--phase0-copy-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDAnimatedImage.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=SDWebImage","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDAnimatedImage.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDAnimatedImage.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDAnimatedImage.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDAnimatedImage.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDAnimatedImage.d"],"deps-style":"makefile","signature":"e2d8472d19989def1d43a940139a05b0"}
"target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDAnimatedImageRep.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDAnimatedImageRep.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDAnimatedImageRep.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDAnimatedImageRep.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDAnimatedImageRep.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/module.modulemap","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--generated-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--phase0-copy-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDAnimatedImageRep.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=SDWebImage","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDAnimatedImageRep.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDAnimatedImageRep.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDAnimatedImageRep.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDAnimatedImageRep.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDAnimatedImageRep.d"],"deps-style":"makefile","signature":"fa3ab3e8bcf339b616555101fa58b3f3"}
"target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDAnimatedImageView+WebCache.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDAnimatedImageView+WebCache.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDAnimatedImageView+WebCache.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDAnimatedImageView+WebCache.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDAnimatedImageView+WebCache.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/module.modulemap","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--generated-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--phase0-copy-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDAnimatedImageView+WebCache.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=SDWebImage","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDAnimatedImageView+WebCache.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDAnimatedImageView+WebCache.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDAnimatedImageView+WebCache.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDAnimatedImageView+WebCache.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDAnimatedImageView+WebCache.d"],"deps-style":"makefile","signature":"e22088ac6df757b028d6ea0e4fbc35f6"}
"target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDAnimatedImageView.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDAnimatedImageView.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDAnimatedImageView.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDAnimatedImageView.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDAnimatedImageView.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/module.modulemap","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--generated-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--phase0-copy-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDAnimatedImageView.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=SDWebImage","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDAnimatedImageView.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDAnimatedImageView.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDAnimatedImageView.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDAnimatedImageView.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDAnimatedImageView.d"],"deps-style":"makefile","signature":"fbe3155336e715bb6d8d562f401b40ba"}
"target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDAsyncBlockOperation.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Private/SDAsyncBlockOperation.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDAsyncBlockOperation.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Private/SDAsyncBlockOperation.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Private/SDAsyncBlockOperation.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/module.modulemap","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--generated-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--phase0-copy-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDAsyncBlockOperation.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=SDWebImage","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDAsyncBlockOperation.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDAsyncBlockOperation.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Private/SDAsyncBlockOperation.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDAsyncBlockOperation.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDAsyncBlockOperation.d"],"deps-style":"makefile","signature":"1e89317ba0f261e9cc54959d52a57622"}
"target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDDiskCache.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDDiskCache.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDDiskCache.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDDiskCache.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDDiskCache.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/module.modulemap","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--generated-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--phase0-copy-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDDiskCache.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=SDWebImage","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDDiskCache.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDDiskCache.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDDiskCache.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDDiskCache.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDDiskCache.d"],"deps-style":"makefile","signature":"77e9b24bdf52cb2a3aae61eb3285c08a"}
"target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDImageAPNGCoder.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDImageAPNGCoder.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDImageAPNGCoder.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDImageAPNGCoder.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDImageAPNGCoder.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/module.modulemap","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--generated-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--phase0-copy-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDImageAPNGCoder.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=SDWebImage","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDImageAPNGCoder.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDImageAPNGCoder.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDImageAPNGCoder.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDImageAPNGCoder.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDImageAPNGCoder.d"],"deps-style":"makefile","signature":"466b82bc0320d31d57a09aa27085923c"}
"target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDImageAssetManager.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Private/SDImageAssetManager.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDImageAssetManager.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Private/SDImageAssetManager.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Private/SDImageAssetManager.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/module.modulemap","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--generated-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--phase0-copy-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDImageAssetManager.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=SDWebImage","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDImageAssetManager.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDImageAssetManager.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Private/SDImageAssetManager.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDImageAssetManager.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDImageAssetManager.d"],"deps-style":"makefile","signature":"c1675f6bc4bb58a655dbc5c33a5e7b60"}
"target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDImageCache.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDImageCache.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDImageCache.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDImageCache.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDImageCache.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/module.modulemap","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--generated-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--phase0-copy-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDImageCache.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=SDWebImage","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDImageCache.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDImageCache.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDImageCache.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDImageCache.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDImageCache.d"],"deps-style":"makefile","signature":"944bc738985ee5390cad7072a7d47785"}
"target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDImageCacheConfig.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDImageCacheConfig.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDImageCacheConfig.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDImageCacheConfig.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDImageCacheConfig.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/module.modulemap","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--generated-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--phase0-copy-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDImageCacheConfig.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=SDWebImage","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDImageCacheConfig.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDImageCacheConfig.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDImageCacheConfig.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDImageCacheConfig.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDImageCacheConfig.d"],"deps-style":"makefile","signature":"14bf4fda3bcbacccec40f668ea9dadd9"}
"target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDImageCacheDefine.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDImageCacheDefine.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDImageCacheDefine.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDImageCacheDefine.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDImageCacheDefine.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/module.modulemap","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--generated-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--phase0-copy-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDImageCacheDefine.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=SDWebImage","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDImageCacheDefine.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDImageCacheDefine.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDImageCacheDefine.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDImageCacheDefine.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDImageCacheDefine.d"],"deps-style":"makefile","signature":"9bf62f1d1ca6268815c522f693796429"}
"target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDImageCachesManager.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDImageCachesManager.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDImageCachesManager.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDImageCachesManager.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDImageCachesManager.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/module.modulemap","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--generated-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--phase0-copy-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDImageCachesManager.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=SDWebImage","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDImageCachesManager.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDImageCachesManager.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDImageCachesManager.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDImageCachesManager.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDImageCachesManager.d"],"deps-style":"makefile","signature":"bb601efa310e19eef6c1f20ac83661fe"}
"target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDImageCachesManagerOperation.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Private/SDImageCachesManagerOperation.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDImageCachesManagerOperation.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Private/SDImageCachesManagerOperation.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Private/SDImageCachesManagerOperation.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/module.modulemap","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--generated-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--phase0-copy-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDImageCachesManagerOperation.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=SDWebImage","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDImageCachesManagerOperation.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDImageCachesManagerOperation.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Private/SDImageCachesManagerOperation.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDImageCachesManagerOperation.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDImageCachesManagerOperation.d"],"deps-style":"makefile","signature":"00905647954938bcce9bb99c4edd9f9d"}
"target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDImageCoder.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDImageCoder.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDImageCoder.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDImageCoder.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDImageCoder.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/module.modulemap","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--generated-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--phase0-copy-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDImageCoder.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=SDWebImage","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDImageCoder.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDImageCoder.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDImageCoder.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDImageCoder.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDImageCoder.d"],"deps-style":"makefile","signature":"ed212e6d9c2c8b18a58b54d7eeb6154d"}
"target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDImageCoderHelper.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDImageCoderHelper.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDImageCoderHelper.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDImageCoderHelper.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDImageCoderHelper.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/module.modulemap","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--generated-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--phase0-copy-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDImageCoderHelper.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=SDWebImage","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDImageCoderHelper.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDImageCoderHelper.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDImageCoderHelper.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDImageCoderHelper.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDImageCoderHelper.d"],"deps-style":"makefile","signature":"abb4a41b55c758e9b4087be41374e7a7"}
"target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDImageCodersManager.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDImageCodersManager.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDImageCodersManager.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDImageCodersManager.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDImageCodersManager.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/module.modulemap","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--generated-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--phase0-copy-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDImageCodersManager.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=SDWebImage","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDImageCodersManager.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDImageCodersManager.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDImageCodersManager.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDImageCodersManager.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDImageCodersManager.d"],"deps-style":"makefile","signature":"a626a78ce66d7acda3adbf044a15e5ef"}
"target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDImageFrame.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDImageFrame.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDImageFrame.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDImageFrame.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDImageFrame.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/module.modulemap","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--generated-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--phase0-copy-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDImageFrame.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=SDWebImage","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDImageFrame.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDImageFrame.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDImageFrame.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDImageFrame.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDImageFrame.d"],"deps-style":"makefile","signature":"0004c38659bfb2e1fd734dc22a43a30f"}
"target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDImageGIFCoder.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDImageGIFCoder.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDImageGIFCoder.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDImageGIFCoder.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDImageGIFCoder.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/module.modulemap","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--generated-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--phase0-copy-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDImageGIFCoder.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=SDWebImage","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDImageGIFCoder.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDImageGIFCoder.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDImageGIFCoder.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDImageGIFCoder.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDImageGIFCoder.d"],"deps-style":"makefile","signature":"7c85e1add1f67f46f36e0cdfb8bc779d"}
"target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDImageGraphics.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDImageGraphics.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDImageGraphics.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDImageGraphics.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDImageGraphics.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/module.modulemap","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--generated-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--phase0-copy-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDImageGraphics.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=SDWebImage","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDImageGraphics.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDImageGraphics.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDImageGraphics.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDImageGraphics.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDImageGraphics.d"],"deps-style":"makefile","signature":"6abf7ba0454c0f66be3cc679c458fb15"}
"target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDImageHEICCoder.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDImageHEICCoder.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDImageHEICCoder.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDImageHEICCoder.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDImageHEICCoder.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/module.modulemap","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--generated-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--phase0-copy-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDImageHEICCoder.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=SDWebImage","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDImageHEICCoder.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDImageHEICCoder.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDImageHEICCoder.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDImageHEICCoder.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDImageHEICCoder.d"],"deps-style":"makefile","signature":"d9fe346bc5553ed17d0fcc8bd0923e60"}
"target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDImageIOAnimatedCoder.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDImageIOAnimatedCoder.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDImageIOAnimatedCoder.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDImageIOAnimatedCoder.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDImageIOAnimatedCoder.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/module.modulemap","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--generated-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--phase0-copy-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDImageIOAnimatedCoder.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=SDWebImage","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDImageIOAnimatedCoder.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDImageIOAnimatedCoder.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDImageIOAnimatedCoder.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDImageIOAnimatedCoder.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDImageIOAnimatedCoder.d"],"deps-style":"makefile","signature":"e288fa56a686220e2269c7380f48ead1"}
"target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDImageIOCoder.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDImageIOCoder.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDImageIOCoder.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDImageIOCoder.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDImageIOCoder.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/module.modulemap","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--generated-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--phase0-copy-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDImageIOCoder.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=SDWebImage","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDImageIOCoder.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDImageIOCoder.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDImageIOCoder.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDImageIOCoder.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDImageIOCoder.d"],"deps-style":"makefile","signature":"a5796b68ee70eb26bbf7eb4ae928abdf"}
"target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDImageLoader.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDImageLoader.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDImageLoader.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDImageLoader.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDImageLoader.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/module.modulemap","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--generated-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--phase0-copy-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDImageLoader.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=SDWebImage","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDImageLoader.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDImageLoader.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDImageLoader.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDImageLoader.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDImageLoader.d"],"deps-style":"makefile","signature":"4f722d4b16c30ff906bbef23deacd4ac"}
"target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDImageLoadersManager.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDImageLoadersManager.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDImageLoadersManager.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDImageLoadersManager.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDImageLoadersManager.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/module.modulemap","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--generated-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--phase0-copy-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDImageLoadersManager.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=SDWebImage","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDImageLoadersManager.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDImageLoadersManager.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDImageLoadersManager.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDImageLoadersManager.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDImageLoadersManager.d"],"deps-style":"makefile","signature":"a3d4c88af5031fb14d24f20bbad92032"}
"target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDImageTransformer.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDImageTransformer.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDImageTransformer.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDImageTransformer.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDImageTransformer.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/module.modulemap","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--generated-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--phase0-copy-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDImageTransformer.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=SDWebImage","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDImageTransformer.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDImageTransformer.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDImageTransformer.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDImageTransformer.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDImageTransformer.d"],"deps-style":"makefile","signature":"63310a4fbfa839663aeda76f2e2527e9"}
"target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDInternalMacros.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Private/SDInternalMacros.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDInternalMacros.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Private/SDInternalMacros.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Private/SDInternalMacros.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/module.modulemap","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--generated-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--phase0-copy-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDInternalMacros.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=SDWebImage","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDInternalMacros.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDInternalMacros.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Private/SDInternalMacros.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDInternalMacros.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDInternalMacros.d"],"deps-style":"makefile","signature":"e16ee8f21ea294911c4ee19e964cf5c1"}
"target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDMemoryCache.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDMemoryCache.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDMemoryCache.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDMemoryCache.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDMemoryCache.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/module.modulemap","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--generated-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--phase0-copy-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDMemoryCache.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=SDWebImage","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDMemoryCache.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDMemoryCache.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDMemoryCache.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDMemoryCache.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDMemoryCache.d"],"deps-style":"makefile","signature":"3860689d6634f22b6416dfbce7323690"}
"target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDWeakProxy.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Private/SDWeakProxy.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDWeakProxy.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Private/SDWeakProxy.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Private/SDWeakProxy.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/module.modulemap","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--generated-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--phase0-copy-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDWeakProxy.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=SDWebImage","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDWeakProxy.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDWeakProxy.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Private/SDWeakProxy.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDWeakProxy.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDWeakProxy.d"],"deps-style":"makefile","signature":"46ac6a8dfeb10fe49d51edb46f26cdfb"}
"target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDWebImage-dummy.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-dummy.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDWebImage-dummy.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-dummy.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-dummy.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/module.modulemap","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--generated-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--phase0-copy-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDWebImage-dummy.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=SDWebImage","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDWebImage-dummy.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDWebImage-dummy.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-dummy.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDWebImage-dummy.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDWebImage-dummy.d"],"deps-style":"makefile","signature":"c35d4ab929af2ebb0af326666019ba0b"}
"target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDWebImageCacheKeyFilter.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDWebImageCacheKeyFilter.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDWebImageCacheKeyFilter.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDWebImageCacheKeyFilter.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDWebImageCacheKeyFilter.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/module.modulemap","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--generated-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--phase0-copy-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDWebImageCacheKeyFilter.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=SDWebImage","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDWebImageCacheKeyFilter.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDWebImageCacheKeyFilter.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDWebImageCacheKeyFilter.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDWebImageCacheKeyFilter.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDWebImageCacheKeyFilter.d"],"deps-style":"makefile","signature":"27e0232b6767494592ac9c3130413ae0"}
"target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDWebImageCacheSerializer.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDWebImageCacheSerializer.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDWebImageCacheSerializer.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDWebImageCacheSerializer.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDWebImageCacheSerializer.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/module.modulemap","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--generated-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--phase0-copy-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDWebImageCacheSerializer.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=SDWebImage","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDWebImageCacheSerializer.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDWebImageCacheSerializer.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDWebImageCacheSerializer.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDWebImageCacheSerializer.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDWebImageCacheSerializer.d"],"deps-style":"makefile","signature":"61ff87cbb4bec11cff74016caecf81bd"}
"target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDWebImageCompat.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDWebImageCompat.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDWebImageCompat.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDWebImageCompat.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDWebImageCompat.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/module.modulemap","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--generated-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--phase0-copy-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDWebImageCompat.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=SDWebImage","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDWebImageCompat.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDWebImageCompat.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDWebImageCompat.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDWebImageCompat.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDWebImageCompat.d"],"deps-style":"makefile","signature":"331c9f25426233b53c3851da1b87c742"}
"target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDWebImageDefine.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDWebImageDefine.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDWebImageDefine.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDWebImageDefine.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDWebImageDefine.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/module.modulemap","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--generated-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--phase0-copy-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDWebImageDefine.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=SDWebImage","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDWebImageDefine.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDWebImageDefine.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDWebImageDefine.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDWebImageDefine.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDWebImageDefine.d"],"deps-style":"makefile","signature":"b62b53adbbd292efbe6c6637ad094d8a"}
"target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDWebImageDownloader.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDWebImageDownloader.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDWebImageDownloader.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDWebImageDownloader.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDWebImageDownloader.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/module.modulemap","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--generated-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--phase0-copy-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDWebImageDownloader.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=SDWebImage","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDWebImageDownloader.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDWebImageDownloader.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDWebImageDownloader.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDWebImageDownloader.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDWebImageDownloader.d"],"deps-style":"makefile","signature":"c0b52bb70784f19a06ac42c36bfcf442"}
"target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDWebImageDownloaderConfig.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDWebImageDownloaderConfig.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDWebImageDownloaderConfig.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDWebImageDownloaderConfig.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDWebImageDownloaderConfig.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/module.modulemap","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--generated-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--phase0-copy-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDWebImageDownloaderConfig.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=SDWebImage","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDWebImageDownloaderConfig.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDWebImageDownloaderConfig.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDWebImageDownloaderConfig.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDWebImageDownloaderConfig.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDWebImageDownloaderConfig.d"],"deps-style":"makefile","signature":"f68a2622ffd47540cf25e175e2129afb"}
"target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDWebImageDownloaderOperation.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDWebImageDownloaderOperation.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDWebImageDownloaderOperation.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDWebImageDownloaderOperation.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDWebImageDownloaderOperation.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/module.modulemap","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--generated-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--phase0-copy-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDWebImageDownloaderOperation.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=SDWebImage","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDWebImageDownloaderOperation.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDWebImageDownloaderOperation.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDWebImageDownloaderOperation.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDWebImageDownloaderOperation.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDWebImageDownloaderOperation.d"],"deps-style":"makefile","signature":"c023e72c7b7dd3964daf65b564edd441"}
"target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDWebImageDownloaderRequestModifier.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDWebImageDownloaderRequestModifier.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDWebImageDownloaderRequestModifier.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDWebImageDownloaderRequestModifier.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDWebImageDownloaderRequestModifier.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/module.modulemap","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--generated-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--phase0-copy-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDWebImageDownloaderRequestModifier.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=SDWebImage","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDWebImageDownloaderRequestModifier.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDWebImageDownloaderRequestModifier.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDWebImageDownloaderRequestModifier.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDWebImageDownloaderRequestModifier.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDWebImageDownloaderRequestModifier.d"],"deps-style":"makefile","signature":"7e268528c6a9f7609c8aa1fbe51fe1b2"}
"target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDWebImageError.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDWebImageError.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDWebImageError.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDWebImageError.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDWebImageError.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/module.modulemap","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--generated-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--phase0-copy-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDWebImageError.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=SDWebImage","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDWebImageError.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDWebImageError.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDWebImageError.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDWebImageError.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDWebImageError.d"],"deps-style":"makefile","signature":"a1dbe041d3347d3d213d411e2264656a"}
"target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDWebImageIndicator.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDWebImageIndicator.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDWebImageIndicator.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDWebImageIndicator.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDWebImageIndicator.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/module.modulemap","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--generated-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--phase0-copy-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDWebImageIndicator.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=SDWebImage","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDWebImageIndicator.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDWebImageIndicator.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDWebImageIndicator.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDWebImageIndicator.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDWebImageIndicator.d"],"deps-style":"makefile","signature":"b51a45646744331e0975feff7f1841b4"}
"target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDWebImageManager.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDWebImageManager.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDWebImageManager.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDWebImageManager.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDWebImageManager.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/module.modulemap","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--generated-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--phase0-copy-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDWebImageManager.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=SDWebImage","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDWebImageManager.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDWebImageManager.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDWebImageManager.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDWebImageManager.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDWebImageManager.d"],"deps-style":"makefile","signature":"eb7beb10a5c062fe197c3fc23bc56f50"}
"target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDWebImageOptionsProcessor.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDWebImageOptionsProcessor.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDWebImageOptionsProcessor.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDWebImageOptionsProcessor.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDWebImageOptionsProcessor.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/module.modulemap","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--generated-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--phase0-copy-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDWebImageOptionsProcessor.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=SDWebImage","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDWebImageOptionsProcessor.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDWebImageOptionsProcessor.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDWebImageOptionsProcessor.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDWebImageOptionsProcessor.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDWebImageOptionsProcessor.d"],"deps-style":"makefile","signature":"d548b157a246f296cc32714618ec8337"}
"target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDWebImagePrefetcher.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDWebImagePrefetcher.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDWebImagePrefetcher.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDWebImagePrefetcher.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDWebImagePrefetcher.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/module.modulemap","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--generated-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--phase0-copy-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDWebImagePrefetcher.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=SDWebImage","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDWebImagePrefetcher.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDWebImagePrefetcher.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDWebImagePrefetcher.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDWebImagePrefetcher.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDWebImagePrefetcher.d"],"deps-style":"makefile","signature":"2656b4fd38ef89a248d97b1ce5467fd6"}
"target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDWebImageTransition.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDWebImageTransition.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDWebImageTransition.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDWebImageTransition.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDWebImageTransition.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/module.modulemap","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--generated-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--phase0-copy-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDWebImageTransition.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=SDWebImage","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDWebImageTransition.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDWebImageTransition.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDWebImageTransition.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDWebImageTransition.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDWebImageTransition.d"],"deps-style":"makefile","signature":"dd67119329c93e3f1a23256f00cadfff"}
"target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDWebImage_vers.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources/SDWebImage_vers.c normal armv7 c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDWebImage_vers.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources/SDWebImage_vers.c normal armv7 c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources/SDWebImage_vers.c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/module.modulemap","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--generated-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--phase0-copy-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDWebImage_vers.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c","-target","armv7-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=SDWebImage","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Werror=deprecated-objc-isa-usage","-Werror=objc-root-class","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDWebImage_vers.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDWebImage_vers.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources/SDWebImage_vers.c","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDWebImage_vers.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDWebImage_vers.d"],"deps-style":"makefile","signature":"e99a43745e4124b2a542a5ca788760ba"}
"target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/UIButton+WebCache.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/UIButton+WebCache.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/UIButton+WebCache.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/UIButton+WebCache.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/UIButton+WebCache.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/module.modulemap","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--generated-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--phase0-copy-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/UIButton+WebCache.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=SDWebImage","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/UIButton+WebCache.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/UIButton+WebCache.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/UIButton+WebCache.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/UIButton+WebCache.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/UIButton+WebCache.d"],"deps-style":"makefile","signature":"8e0229e7eb12a1c75c0aa8cb638d2c67"}
"target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/UIColor+HexString.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Private/UIColor+HexString.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/UIColor+HexString.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Private/UIColor+HexString.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Private/UIColor+HexString.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/module.modulemap","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--generated-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--phase0-copy-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/UIColor+HexString.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=SDWebImage","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/UIColor+HexString.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/UIColor+HexString.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Private/UIColor+HexString.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/UIColor+HexString.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/UIColor+HexString.d"],"deps-style":"makefile","signature":"cdc185b8edd47bf6354972da6cffec50"}
"target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/UIImage+ForceDecode.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/UIImage+ForceDecode.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/UIImage+ForceDecode.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/UIImage+ForceDecode.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/UIImage+ForceDecode.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/module.modulemap","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--generated-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--phase0-copy-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/UIImage+ForceDecode.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=SDWebImage","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/UIImage+ForceDecode.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/UIImage+ForceDecode.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/UIImage+ForceDecode.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/UIImage+ForceDecode.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/UIImage+ForceDecode.d"],"deps-style":"makefile","signature":"e7463d4e2a44a44bf15b64b8003100e6"}
"target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/UIImage+GIF.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/UIImage+GIF.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/UIImage+GIF.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/UIImage+GIF.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/UIImage+GIF.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/module.modulemap","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--generated-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--phase0-copy-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/UIImage+GIF.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=SDWebImage","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/UIImage+GIF.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/UIImage+GIF.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/UIImage+GIF.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/UIImage+GIF.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/UIImage+GIF.d"],"deps-style":"makefile","signature":"5673625a1bf6feb921d52a5c452727a9"}
"target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/UIImage+MemoryCacheCost.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/UIImage+MemoryCacheCost.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/UIImage+MemoryCacheCost.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/UIImage+MemoryCacheCost.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/UIImage+MemoryCacheCost.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/module.modulemap","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--generated-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--phase0-copy-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/UIImage+MemoryCacheCost.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=SDWebImage","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/UIImage+MemoryCacheCost.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/UIImage+MemoryCacheCost.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/UIImage+MemoryCacheCost.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/UIImage+MemoryCacheCost.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/UIImage+MemoryCacheCost.d"],"deps-style":"makefile","signature":"0e3bc6a153cd3789a55b440b145ab8e5"}
"target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/UIImage+Metadata.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/UIImage+Metadata.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/UIImage+Metadata.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/UIImage+Metadata.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/UIImage+Metadata.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/module.modulemap","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--generated-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--phase0-copy-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/UIImage+Metadata.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=SDWebImage","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/UIImage+Metadata.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/UIImage+Metadata.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/UIImage+Metadata.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/UIImage+Metadata.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/UIImage+Metadata.d"],"deps-style":"makefile","signature":"66bc50a05dab93986e6003952cc3a76a"}
"target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/UIImage+MultiFormat.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/UIImage+MultiFormat.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/UIImage+MultiFormat.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/UIImage+MultiFormat.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/UIImage+MultiFormat.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/module.modulemap","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--generated-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--phase0-copy-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/UIImage+MultiFormat.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=SDWebImage","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/UIImage+MultiFormat.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/UIImage+MultiFormat.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/UIImage+MultiFormat.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/UIImage+MultiFormat.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/UIImage+MultiFormat.d"],"deps-style":"makefile","signature":"0219d205c75eb5067a4df79812c39663"}
"target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/UIImage+Transform.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/UIImage+Transform.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/UIImage+Transform.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/UIImage+Transform.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/UIImage+Transform.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/module.modulemap","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--generated-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--phase0-copy-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/UIImage+Transform.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=SDWebImage","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/UIImage+Transform.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/UIImage+Transform.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/UIImage+Transform.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/UIImage+Transform.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/UIImage+Transform.d"],"deps-style":"makefile","signature":"31257e7f15b25210dde029fc75162d19"}
"target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/UIImageView+HighlightedWebCache.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/UIImageView+HighlightedWebCache.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/UIImageView+HighlightedWebCache.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/UIImageView+HighlightedWebCache.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/UIImageView+HighlightedWebCache.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/module.modulemap","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--generated-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--phase0-copy-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/UIImageView+HighlightedWebCache.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=SDWebImage","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/UIImageView+HighlightedWebCache.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/UIImageView+HighlightedWebCache.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/UIImageView+HighlightedWebCache.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/UIImageView+HighlightedWebCache.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/UIImageView+HighlightedWebCache.d"],"deps-style":"makefile","signature":"61b739a7f149a0558b77d5739fa09835"}
"target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/UIImageView+WebCache.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/UIImageView+WebCache.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/UIImageView+WebCache.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/UIImageView+WebCache.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/UIImageView+WebCache.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/module.modulemap","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--generated-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--phase0-copy-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/UIImageView+WebCache.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=SDWebImage","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/UIImageView+WebCache.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/UIImageView+WebCache.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/UIImageView+WebCache.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/UIImageView+WebCache.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/UIImageView+WebCache.d"],"deps-style":"makefile","signature":"1cafd64843c61f7e0b47355e0ea56153"}
"target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/UIView+WebCache.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/UIView+WebCache.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/UIView+WebCache.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/UIView+WebCache.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/UIView+WebCache.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/module.modulemap","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--generated-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--phase0-copy-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/UIView+WebCache.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=SDWebImage","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/UIView+WebCache.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/UIView+WebCache.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/UIView+WebCache.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/UIView+WebCache.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/UIView+WebCache.d"],"deps-style":"makefile","signature":"6f68e5d29b28c37ff71bde11517e25f0"}
"target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/UIView+WebCacheOperation.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/UIView+WebCacheOperation.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/UIView+WebCacheOperation.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/UIView+WebCacheOperation.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/UIView+WebCacheOperation.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/module.modulemap","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--generated-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--phase0-copy-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/UIView+WebCacheOperation.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=SDWebImage","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/UIView+WebCacheOperation.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/UIView+WebCacheOperation.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/UIView+WebCacheOperation.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/UIView+WebCacheOperation.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/UIView+WebCacheOperation.d"],"deps-style":"makefile","signature":"3a70b4a3524236d23e7126c4065769e0"}
"target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/NSButton+WebCache.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/NSButton+WebCache.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/NSButton+WebCache.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/NSButton+WebCache.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/NSButton+WebCache.h/","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--HeadermapTaskProducer>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/NSButton+WebCache.h"]}
"target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/NSData+ImageContentType.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/NSData+ImageContentType.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/NSData+ImageContentType.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/NSData+ImageContentType.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/NSData+ImageContentType.h/","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--HeadermapTaskProducer>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/NSData+ImageContentType.h"]}
"target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/NSImage+Compatibility.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/NSImage+Compatibility.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/NSImage+Compatibility.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/NSImage+Compatibility.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/NSImage+Compatibility.h/","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--HeadermapTaskProducer>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/NSImage+Compatibility.h"]}
"target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDAnimatedImage.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDAnimatedImage.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDAnimatedImage.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDAnimatedImage.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDAnimatedImage.h/","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--HeadermapTaskProducer>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDAnimatedImage.h"]}
"target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDAnimatedImageRep.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDAnimatedImageRep.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDAnimatedImageRep.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDAnimatedImageRep.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDAnimatedImageRep.h/","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--HeadermapTaskProducer>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDAnimatedImageRep.h"]}
"target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDAnimatedImageView+WebCache.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDAnimatedImageView+WebCache.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDAnimatedImageView+WebCache.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDAnimatedImageView+WebCache.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDAnimatedImageView+WebCache.h/","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--HeadermapTaskProducer>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDAnimatedImageView+WebCache.h"]}
"target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDAnimatedImageView.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDAnimatedImageView.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDAnimatedImageView.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDAnimatedImageView.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDAnimatedImageView.h/","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--HeadermapTaskProducer>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDAnimatedImageView.h"]}
"target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDDiskCache.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDDiskCache.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDDiskCache.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDDiskCache.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDDiskCache.h/","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--HeadermapTaskProducer>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDDiskCache.h"]}
"target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDImageAPNGCoder.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDImageAPNGCoder.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDImageAPNGCoder.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDImageAPNGCoder.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDImageAPNGCoder.h/","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--HeadermapTaskProducer>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDImageAPNGCoder.h"]}
"target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDImageCache.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDImageCache.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDImageCache.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDImageCache.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDImageCache.h/","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--HeadermapTaskProducer>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDImageCache.h"]}
"target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDImageCacheConfig.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDImageCacheConfig.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDImageCacheConfig.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDImageCacheConfig.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDImageCacheConfig.h/","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--HeadermapTaskProducer>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDImageCacheConfig.h"]}
"target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDImageCacheDefine.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDImageCacheDefine.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDImageCacheDefine.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDImageCacheDefine.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDImageCacheDefine.h/","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--HeadermapTaskProducer>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDImageCacheDefine.h"]}
"target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDImageCachesManager.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDImageCachesManager.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDImageCachesManager.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDImageCachesManager.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDImageCachesManager.h/","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--HeadermapTaskProducer>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDImageCachesManager.h"]}
"target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDImageCoder.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDImageCoder.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDImageCoder.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDImageCoder.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDImageCoder.h/","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--HeadermapTaskProducer>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDImageCoder.h"]}
"target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDImageCoderHelper.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDImageCoderHelper.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDImageCoderHelper.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDImageCoderHelper.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDImageCoderHelper.h/","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--HeadermapTaskProducer>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDImageCoderHelper.h"]}
"target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDImageCodersManager.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDImageCodersManager.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDImageCodersManager.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDImageCodersManager.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDImageCodersManager.h/","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--HeadermapTaskProducer>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDImageCodersManager.h"]}
"target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDImageFrame.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDImageFrame.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDImageFrame.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDImageFrame.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDImageFrame.h/","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--HeadermapTaskProducer>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDImageFrame.h"]}
"target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDImageGIFCoder.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDImageGIFCoder.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDImageGIFCoder.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDImageGIFCoder.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDImageGIFCoder.h/","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--HeadermapTaskProducer>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDImageGIFCoder.h"]}
"target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDImageGraphics.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDImageGraphics.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDImageGraphics.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDImageGraphics.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDImageGraphics.h/","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--HeadermapTaskProducer>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDImageGraphics.h"]}
"target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDImageHEICCoder.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDImageHEICCoder.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDImageHEICCoder.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDImageHEICCoder.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDImageHEICCoder.h/","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--HeadermapTaskProducer>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDImageHEICCoder.h"]}
"target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDImageIOAnimatedCoder.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDImageIOAnimatedCoder.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDImageIOAnimatedCoder.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDImageIOAnimatedCoder.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDImageIOAnimatedCoder.h/","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--HeadermapTaskProducer>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDImageIOAnimatedCoder.h"]}
"target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDImageIOCoder.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDImageIOCoder.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDImageIOCoder.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDImageIOCoder.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDImageIOCoder.h/","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--HeadermapTaskProducer>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDImageIOCoder.h"]}
"target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDImageLoader.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDImageLoader.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDImageLoader.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDImageLoader.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDImageLoader.h/","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--HeadermapTaskProducer>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDImageLoader.h"]}
"target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDImageLoadersManager.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDImageLoadersManager.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDImageLoadersManager.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDImageLoadersManager.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDImageLoadersManager.h/","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--HeadermapTaskProducer>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDImageLoadersManager.h"]}
"target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDImageTransformer.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDImageTransformer.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDImageTransformer.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDImageTransformer.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDImageTransformer.h/","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--HeadermapTaskProducer>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDImageTransformer.h"]}
"target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDMemoryCache.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDMemoryCache.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDMemoryCache.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDMemoryCache.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDMemoryCache.h/","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--HeadermapTaskProducer>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDMemoryCache.h"]}
"target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDWebImageCacheKeyFilter.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDWebImageCacheKeyFilter.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDWebImageCacheKeyFilter.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDWebImageCacheKeyFilter.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDWebImageCacheKeyFilter.h/","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--HeadermapTaskProducer>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDWebImageCacheKeyFilter.h"]}
"target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDWebImageCacheSerializer.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDWebImageCacheSerializer.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDWebImageCacheSerializer.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDWebImageCacheSerializer.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDWebImageCacheSerializer.h/","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--HeadermapTaskProducer>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDWebImageCacheSerializer.h"]}
"target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDWebImageCompat.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDWebImageCompat.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDWebImageCompat.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDWebImageCompat.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDWebImageCompat.h/","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--HeadermapTaskProducer>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDWebImageCompat.h"]}
"target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDWebImageDefine.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDWebImageDefine.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDWebImageDefine.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDWebImageDefine.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDWebImageDefine.h/","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--HeadermapTaskProducer>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDWebImageDefine.h"]}
"target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDWebImageDownloader.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDWebImageDownloader.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDWebImageDownloader.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDWebImageDownloader.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDWebImageDownloader.h/","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--HeadermapTaskProducer>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDWebImageDownloader.h"]}
"target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDWebImageDownloaderConfig.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDWebImageDownloaderConfig.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDWebImageDownloaderConfig.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDWebImageDownloaderConfig.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDWebImageDownloaderConfig.h/","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--HeadermapTaskProducer>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDWebImageDownloaderConfig.h"]}
"target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDWebImageDownloaderOperation.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDWebImageDownloaderOperation.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDWebImageDownloaderOperation.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDWebImageDownloaderOperation.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDWebImageDownloaderOperation.h/","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--HeadermapTaskProducer>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDWebImageDownloaderOperation.h"]}
"target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDWebImageDownloaderRequestModifier.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDWebImageDownloaderRequestModifier.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDWebImageDownloaderRequestModifier.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDWebImageDownloaderRequestModifier.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDWebImageDownloaderRequestModifier.h/","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--HeadermapTaskProducer>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDWebImageDownloaderRequestModifier.h"]}
"target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDWebImageError.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDWebImageError.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDWebImageError.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDWebImageError.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDWebImageError.h/","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--HeadermapTaskProducer>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDWebImageError.h"]}
"target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDWebImageIndicator.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDWebImageIndicator.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDWebImageIndicator.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDWebImageIndicator.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDWebImageIndicator.h/","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--HeadermapTaskProducer>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDWebImageIndicator.h"]}
"target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDWebImageManager.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDWebImageManager.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDWebImageManager.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDWebImageManager.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDWebImageManager.h/","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--HeadermapTaskProducer>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDWebImageManager.h"]}
"target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDWebImageOperation.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDWebImageOperation.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDWebImageOperation.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDWebImageOperation.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDWebImageOperation.h/","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--HeadermapTaskProducer>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDWebImageOperation.h"]}
"target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDWebImageOptionsProcessor.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDWebImageOptionsProcessor.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDWebImageOptionsProcessor.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDWebImageOptionsProcessor.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDWebImageOptionsProcessor.h/","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--HeadermapTaskProducer>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDWebImageOptionsProcessor.h"]}
"target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDWebImagePrefetcher.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDWebImagePrefetcher.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDWebImagePrefetcher.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDWebImagePrefetcher.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDWebImagePrefetcher.h/","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--HeadermapTaskProducer>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDWebImagePrefetcher.h"]}
"target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDWebImageTransition.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDWebImageTransition.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDWebImageTransition.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDWebImageTransition.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/SDWebImageTransition.h/","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--HeadermapTaskProducer>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDWebImageTransition.h"]}
"target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/UIButton+WebCache.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/UIButton+WebCache.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/UIButton+WebCache.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/UIButton+WebCache.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/UIButton+WebCache.h/","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--HeadermapTaskProducer>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/UIButton+WebCache.h"]}
"target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/UIImage+ForceDecode.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/UIImage+ForceDecode.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/UIImage+ForceDecode.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/UIImage+ForceDecode.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/UIImage+ForceDecode.h/","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--HeadermapTaskProducer>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/UIImage+ForceDecode.h"]}
"target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/UIImage+GIF.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/UIImage+GIF.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/UIImage+GIF.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/UIImage+GIF.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/UIImage+GIF.h/","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--HeadermapTaskProducer>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/UIImage+GIF.h"]}
"target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/UIImage+MemoryCacheCost.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/UIImage+MemoryCacheCost.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/UIImage+MemoryCacheCost.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/UIImage+MemoryCacheCost.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/UIImage+MemoryCacheCost.h/","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--HeadermapTaskProducer>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/UIImage+MemoryCacheCost.h"]}
"target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/UIImage+Metadata.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/UIImage+Metadata.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/UIImage+Metadata.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/UIImage+Metadata.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/UIImage+Metadata.h/","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--HeadermapTaskProducer>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/UIImage+Metadata.h"]}
"target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/UIImage+MultiFormat.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/UIImage+MultiFormat.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/UIImage+MultiFormat.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/UIImage+MultiFormat.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/UIImage+MultiFormat.h/","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--HeadermapTaskProducer>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/UIImage+MultiFormat.h"]}
"target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/UIImage+Transform.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/UIImage+Transform.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/UIImage+Transform.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/UIImage+Transform.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/UIImage+Transform.h/","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--HeadermapTaskProducer>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/UIImage+Transform.h"]}
"target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/UIImageView+HighlightedWebCache.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/UIImageView+HighlightedWebCache.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/UIImageView+HighlightedWebCache.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/UIImageView+HighlightedWebCache.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/UIImageView+HighlightedWebCache.h/","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--HeadermapTaskProducer>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/UIImageView+HighlightedWebCache.h"]}
"target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/UIImageView+WebCache.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/UIImageView+WebCache.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/UIImageView+WebCache.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/UIImageView+WebCache.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/UIImageView+WebCache.h/","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--HeadermapTaskProducer>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/UIImageView+WebCache.h"]}
"target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/UIView+WebCache.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/UIView+WebCache.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/UIView+WebCache.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/UIView+WebCache.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/UIView+WebCache.h/","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--HeadermapTaskProducer>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/UIView+WebCache.h"]}
"target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/UIView+WebCacheOperation.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/UIView+WebCacheOperation.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/UIView+WebCacheOperation.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/UIView+WebCacheOperation.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Core/UIView+WebCacheOperation.h/","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--HeadermapTaskProducer>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/UIView+WebCacheOperation.h"]}
"target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Private/NSBezierPath+RoundedCorners.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/PrivateHeaders/NSBezierPath+RoundedCorners.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Private/NSBezierPath+RoundedCorners.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/PrivateHeaders/NSBezierPath+RoundedCorners.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Private/NSBezierPath+RoundedCorners.h/","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--HeadermapTaskProducer>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/PrivateHeaders/NSBezierPath+RoundedCorners.h"]}
"target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Private/SDAsyncBlockOperation.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/PrivateHeaders/SDAsyncBlockOperation.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Private/SDAsyncBlockOperation.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/PrivateHeaders/SDAsyncBlockOperation.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Private/SDAsyncBlockOperation.h/","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--HeadermapTaskProducer>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/PrivateHeaders/SDAsyncBlockOperation.h"]}
"target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Private/SDImageAssetManager.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/PrivateHeaders/SDImageAssetManager.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Private/SDImageAssetManager.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/PrivateHeaders/SDImageAssetManager.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Private/SDImageAssetManager.h/","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--HeadermapTaskProducer>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/PrivateHeaders/SDImageAssetManager.h"]}
"target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Private/SDImageCachesManagerOperation.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/PrivateHeaders/SDImageCachesManagerOperation.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Private/SDImageCachesManagerOperation.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/PrivateHeaders/SDImageCachesManagerOperation.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Private/SDImageCachesManagerOperation.h/","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--HeadermapTaskProducer>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/PrivateHeaders/SDImageCachesManagerOperation.h"]}
"target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Private/SDImageHEICCoderInternal.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/PrivateHeaders/SDImageHEICCoderInternal.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Private/SDImageHEICCoderInternal.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/PrivateHeaders/SDImageHEICCoderInternal.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Private/SDImageHEICCoderInternal.h/","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--HeadermapTaskProducer>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/PrivateHeaders/SDImageHEICCoderInternal.h"]}
"target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Private/SDImageIOAnimatedCoderInternal.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/PrivateHeaders/SDImageIOAnimatedCoderInternal.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Private/SDImageIOAnimatedCoderInternal.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/PrivateHeaders/SDImageIOAnimatedCoderInternal.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Private/SDImageIOAnimatedCoderInternal.h/","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--HeadermapTaskProducer>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/PrivateHeaders/SDImageIOAnimatedCoderInternal.h"]}
"target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Private/SDInternalMacros.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/PrivateHeaders/SDInternalMacros.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Private/SDInternalMacros.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/PrivateHeaders/SDInternalMacros.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Private/SDInternalMacros.h/","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--HeadermapTaskProducer>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/PrivateHeaders/SDInternalMacros.h"]}
"target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Private/SDWeakProxy.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/PrivateHeaders/SDWeakProxy.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Private/SDWeakProxy.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/PrivateHeaders/SDWeakProxy.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Private/SDWeakProxy.h/","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--HeadermapTaskProducer>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/PrivateHeaders/SDWeakProxy.h"]}
"target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Private/SDmetamacros.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/PrivateHeaders/SDmetamacros.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Private/SDmetamacros.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/PrivateHeaders/SDmetamacros.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Private/SDmetamacros.h/","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--HeadermapTaskProducer>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/PrivateHeaders/SDmetamacros.h"]}
"target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Private/UIColor+HexString.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/PrivateHeaders/UIColor+HexString.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Private/UIColor+HexString.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/PrivateHeaders/UIColor+HexString.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/SDWebImage/Private/UIColor+HexString.h/","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--HeadermapTaskProducer>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/PrivateHeaders/UIColor+HexString.h"]}
"target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/WebImage/SDWebImage.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDWebImage.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/WebImage/SDWebImage.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDWebImage.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/SDWebImage/WebImage/SDWebImage.h/","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--HeadermapTaskProducer>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDWebImage.h"]}
"target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-umbrella.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDWebImage-umbrella.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-umbrella.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDWebImage-umbrella.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-umbrella.h/","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--HeadermapTaskProducer>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers/SDWebImage-umbrella.h"]}
"target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d-:Debug:CreateUniversalBinary /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/SDWebImage normal armv7 arm64": {"tool":"shell","description":"CreateUniversalBinary /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/SDWebImage normal armv7 arm64","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/Binary/SDWebImage","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/Binary/SDWebImage","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--phase0-copy-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/SDWebImage","<Linked Binary /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/SDWebImage>"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/lipo","-create","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/Binary/SDWebImage","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/Binary/SDWebImage","-output","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/SDWebImage"],"env":{},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","signature":"d891813d70d6f2f67339fd3848dd3339"}
"target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d-:Debug:Ditto /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/module.modulemap /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Modules/module.modulemap": {"tool":"file-copy","description":"Ditto /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/module.modulemap /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Modules/module.modulemap","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/module.modulemap/","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--HeadermapTaskProducer>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Modules/module.modulemap"]}
"target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d-:Debug:Ld /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/Binary/SDWebImage normal arm64": {"tool":"shell","description":"Ld /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/Binary/SDWebImage normal arm64","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/NSBezierPath+RoundedCorners.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/NSButton+WebCache.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/NSData+ImageContentType.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/NSImage+Compatibility.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDAnimatedImage.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDAnimatedImageRep.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDAnimatedImageView+WebCache.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDAnimatedImageView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDAsyncBlockOperation.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDDiskCache.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDImageAPNGCoder.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDImageAssetManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDImageCache.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDImageCacheConfig.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDImageCacheDefine.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDImageCachesManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDImageCachesManagerOperation.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDImageCoder.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDImageCoderHelper.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDImageCodersManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDImageFrame.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDImageGIFCoder.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDImageGraphics.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDImageHEICCoder.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDImageIOAnimatedCoder.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDImageIOCoder.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDImageLoader.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDImageLoadersManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDImageTransformer.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDInternalMacros.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDMemoryCache.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDWeakProxy.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDWebImage-dummy.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDWebImageCacheKeyFilter.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDWebImageCacheSerializer.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDWebImageCompat.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDWebImageDefine.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDWebImageDownloader.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDWebImageDownloaderConfig.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDWebImageDownloaderOperation.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDWebImageDownloaderRequestModifier.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDWebImageError.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDWebImageIndicator.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDWebImageManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDWebImageOptionsProcessor.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDWebImagePrefetcher.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDWebImageTransition.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/UIButton+WebCache.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/UIColor+HexString.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/UIImage+ForceDecode.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/UIImage+GIF.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/UIImage+MemoryCacheCost.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/UIImage+Metadata.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/UIImage+MultiFormat.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/UIImage+Transform.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/UIImageView+HighlightedWebCache.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/UIImageView+WebCache.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/UIView+WebCache.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/UIView+WebCacheOperation.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDWebImage_vers.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDWebImage.LinkFileList","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--phase0-copy-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/Binary/SDWebImage"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-target","arm64-apple-ios8.0","-dynamiclib","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-L/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-filelist","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDWebImage.LinkFileList","-install_name","@rpath/SDWebImage.framework/SDWebImage","-Xlinker","-rpath","-Xlinker","@executable_path/Frameworks","-Xlinker","-rpath","-Xlinker","@loader_path/Frameworks","-dead_strip","-Xlinker","-object_path_lto","-Xlinker","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDWebImage_lto.o","-Xlinker","-export_dynamic","-Xlinker","-no_deduplicate","-fembed-bitcode-marker","-fobjc-arc","-fobjc-link-runtime","-framework","ImageIO","-framework","Foundation","-framework","ImageIO","-compatibility_version","1","-current_version","1","-Xlinker","-dependency_info","-Xlinker","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDWebImage_dependency_info.dat","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/Binary/SDWebImage"],"env":{},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDWebImage_dependency_info.dat"],"deps-style":"dependency-info","signature":"78cd58de9907cfc6f20e8216180ceb01"}
"target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d-:Debug:Ld /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/Binary/SDWebImage normal armv7": {"tool":"shell","description":"Ld /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/Binary/SDWebImage normal armv7","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/NSBezierPath+RoundedCorners.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/NSButton+WebCache.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/NSData+ImageContentType.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/NSImage+Compatibility.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDAnimatedImage.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDAnimatedImageRep.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDAnimatedImageView+WebCache.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDAnimatedImageView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDAsyncBlockOperation.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDDiskCache.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDImageAPNGCoder.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDImageAssetManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDImageCache.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDImageCacheConfig.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDImageCacheDefine.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDImageCachesManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDImageCachesManagerOperation.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDImageCoder.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDImageCoderHelper.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDImageCodersManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDImageFrame.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDImageGIFCoder.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDImageGraphics.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDImageHEICCoder.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDImageIOAnimatedCoder.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDImageIOCoder.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDImageLoader.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDImageLoadersManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDImageTransformer.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDInternalMacros.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDMemoryCache.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDWeakProxy.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDWebImage-dummy.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDWebImageCacheKeyFilter.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDWebImageCacheSerializer.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDWebImageCompat.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDWebImageDefine.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDWebImageDownloader.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDWebImageDownloaderConfig.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDWebImageDownloaderOperation.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDWebImageDownloaderRequestModifier.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDWebImageError.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDWebImageIndicator.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDWebImageManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDWebImageOptionsProcessor.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDWebImagePrefetcher.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDWebImageTransition.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/UIButton+WebCache.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/UIColor+HexString.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/UIImage+ForceDecode.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/UIImage+GIF.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/UIImage+MemoryCacheCost.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/UIImage+Metadata.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/UIImage+MultiFormat.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/UIImage+Transform.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/UIImageView+HighlightedWebCache.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/UIImageView+WebCache.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/UIView+WebCache.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/UIView+WebCacheOperation.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDWebImage_vers.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDWebImage.LinkFileList","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--phase0-copy-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/Binary/SDWebImage"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-target","armv7-apple-ios8.0","-dynamiclib","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-L/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage","-filelist","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDWebImage.LinkFileList","-install_name","@rpath/SDWebImage.framework/SDWebImage","-Xlinker","-rpath","-Xlinker","@executable_path/Frameworks","-Xlinker","-rpath","-Xlinker","@loader_path/Frameworks","-dead_strip","-Xlinker","-object_path_lto","-Xlinker","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDWebImage_lto.o","-Xlinker","-export_dynamic","-Xlinker","-no_deduplicate","-fembed-bitcode-marker","-fobjc-arc","-fobjc-link-runtime","-framework","ImageIO","-framework","Foundation","-framework","ImageIO","-compatibility_version","1","-current_version","1","-Xlinker","-dependency_info","-Xlinker","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDWebImage_dependency_info.dat","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/Binary/SDWebImage"],"env":{},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDWebImage_dependency_info.dat"],"deps-style":"dependency-info","signature":"23a25cf9077beb03efc6777b8d74ee56"}
"target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d-:Debug:MkDir /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework": {"tool":"mkdir","description":"MkDir /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework","inputs":["<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--start>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework","<MkDir /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework>"]}
"target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d-:Debug:MkDir /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers": {"tool":"mkdir","description":"MkDir /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers","inputs":["<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--start>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers","<MkDir /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Headers>"]}
"target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d-:Debug:MkDir /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/PrivateHeaders": {"tool":"mkdir","description":"MkDir /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/PrivateHeaders","inputs":["<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--start>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/PrivateHeaders","<MkDir /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/PrivateHeaders>"]}
"target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d-:Debug:ProcessInfoPlistFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Info.plist /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-Info.plist": {"tool":"info-plist-processor","description":"ProcessInfoPlistFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Info.plist /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-Info.plist","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/SDWebImage/SDWebImage-Info.plist","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--HeadermapTaskProducer>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework/Info.plist"]}
"target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d-:Debug:Touch /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework": {"tool":"shell","description":"Touch /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--Barrier-RegisterExecutionPolicyException>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--entry>"],"outputs":["<Touch /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework>"],"args":["/usr/bin/touch","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/SDWebImage/SDWebImage.framework"],"env":{},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","signature":"9e397e9dc39be2551082bb806d779d54"}
"target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources/SDWebImage_vers.c": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources/SDWebImage_vers.c","inputs":["<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--phase0-copy-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/DerivedSources/SDWebImage_vers.c"]}
"target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDWebImage.LinkFileList": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDWebImage.LinkFileList","inputs":["<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--phase0-copy-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/arm64/SDWebImage.LinkFileList"]}
"target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDWebImage.LinkFileList": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDWebImage.LinkFileList","inputs":["<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--phase0-copy-headers>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/Objects-normal/armv7/SDWebImage.LinkFileList"]}
"target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-all-non-framework-target-headers.hmap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-all-non-framework-target-headers.hmap","inputs":["<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--GeneratedFilesTaskProducer>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-all-non-framework-target-headers.hmap"]}
"target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-all-target-headers.hmap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-all-target-headers.hmap","inputs":["<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--GeneratedFilesTaskProducer>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-all-target-headers.hmap"]}
"target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-generated-files.hmap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-generated-files.hmap","inputs":["<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--GeneratedFilesTaskProducer>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-generated-files.hmap"]}
"target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-own-target-headers.hmap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-own-target-headers.hmap","inputs":["<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--GeneratedFilesTaskProducer>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-own-target-headers.hmap"]}
"target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-project-headers.hmap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-project-headers.hmap","inputs":["<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--GeneratedFilesTaskProducer>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage-project-headers.hmap"]}
"target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage.hmap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage.hmap","inputs":["<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--GeneratedFilesTaskProducer>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/SDWebImage.hmap"]}
"target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/all-product-headers.yaml": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/all-product-headers.yaml","inputs":["<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--GeneratedFilesTaskProducer>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/all-product-headers.yaml"]}
"target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/module.modulemap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/module.modulemap","inputs":["<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--HeadermapTaskProducer>","<target-SDWebImage-285b96a559574e49fe0e1a40c03a5a8ec46180aea4e87057640961e6db37df0d--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/SDWebImage.build/module.modulemap"]}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/CALayer+YYAdd.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/Quartz/CALayer+YYAdd.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/CALayer+YYAdd.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/Quartz/CALayer+YYAdd.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/Quartz/CALayer+YYAdd.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/module.modulemap","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--generated-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--phase0-copy-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/CALayer+YYAdd.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=YYKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/CALayer+YYAdd.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/CALayer+YYAdd.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/Quartz/CALayer+YYAdd.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/CALayer+YYAdd.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/CALayer+YYAdd.d"],"deps-style":"makefile","signature":"d19cedbac3de05eeeab47e1d1d1d6125"}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/CALayer+YYWebImage.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Image/Categories/CALayer+YYWebImage.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/CALayer+YYWebImage.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Image/Categories/CALayer+YYWebImage.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Image/Categories/CALayer+YYWebImage.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/module.modulemap","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--generated-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--phase0-copy-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/CALayer+YYWebImage.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=YYKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/CALayer+YYWebImage.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/CALayer+YYWebImage.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Image/Categories/CALayer+YYWebImage.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/CALayer+YYWebImage.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/CALayer+YYWebImage.d"],"deps-style":"makefile","signature":"41fa204c68926649aec6c4cdfc8678d8"}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/MKAnnotationView+YYWebImage.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Image/Categories/MKAnnotationView+YYWebImage.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/MKAnnotationView+YYWebImage.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Image/Categories/MKAnnotationView+YYWebImage.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Image/Categories/MKAnnotationView+YYWebImage.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/module.modulemap","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--generated-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--phase0-copy-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/MKAnnotationView+YYWebImage.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=YYKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/MKAnnotationView+YYWebImage.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/MKAnnotationView+YYWebImage.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Image/Categories/MKAnnotationView+YYWebImage.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/MKAnnotationView+YYWebImage.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/MKAnnotationView+YYWebImage.d"],"deps-style":"makefile","signature":"c8e9e1c87298bac049ec86aae9e20049"}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/NSArray+YYAdd.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/Foundation/NSArray+YYAdd.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/NSArray+YYAdd.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/Foundation/NSArray+YYAdd.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/Foundation/NSArray+YYAdd.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/module.modulemap","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--generated-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--phase0-copy-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/NSArray+YYAdd.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=YYKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/NSArray+YYAdd.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/NSArray+YYAdd.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/Foundation/NSArray+YYAdd.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/NSArray+YYAdd.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/NSArray+YYAdd.d"],"deps-style":"makefile","signature":"de0f29da852ae046bcb0ffcf06d33672"}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/NSAttributedString+YYText.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Text/String/NSAttributedString+YYText.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/NSAttributedString+YYText.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Text/String/NSAttributedString+YYText.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Text/String/NSAttributedString+YYText.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/module.modulemap","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--generated-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--phase0-copy-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/NSAttributedString+YYText.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=YYKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/NSAttributedString+YYText.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/NSAttributedString+YYText.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Text/String/NSAttributedString+YYText.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/NSAttributedString+YYText.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/NSAttributedString+YYText.d"],"deps-style":"makefile","signature":"af394865cf32000b04133d02e010e3f9"}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/NSBundle+YYAdd.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/Foundation/NSBundle+YYAdd.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/NSBundle+YYAdd.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/Foundation/NSBundle+YYAdd.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/Foundation/NSBundle+YYAdd.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/module.modulemap","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--generated-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--phase0-copy-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/NSBundle+YYAdd.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=YYKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/NSBundle+YYAdd.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/NSBundle+YYAdd.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/Foundation/NSBundle+YYAdd.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/NSBundle+YYAdd.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/NSBundle+YYAdd.d"],"deps-style":"makefile","signature":"1bcf8b483d17e005b84be3f2350e8369"}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/NSData+YYAdd.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/Foundation/NSData+YYAdd.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/NSData+YYAdd.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/Foundation/NSData+YYAdd.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/Foundation/NSData+YYAdd.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/module.modulemap","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--generated-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--phase0-copy-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/NSData+YYAdd.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=YYKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/NSData+YYAdd.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/NSData+YYAdd.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/Foundation/NSData+YYAdd.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/NSData+YYAdd.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/NSData+YYAdd.d"],"deps-style":"makefile","signature":"713a486dbc47e9e125c9a40f9bafc724"}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/NSDate+YYAdd.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/Foundation/NSDate+YYAdd.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/NSDate+YYAdd.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/Foundation/NSDate+YYAdd.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/Foundation/NSDate+YYAdd.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/module.modulemap","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--generated-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--phase0-copy-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/NSDate+YYAdd.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=YYKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/NSDate+YYAdd.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/NSDate+YYAdd.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/Foundation/NSDate+YYAdd.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/NSDate+YYAdd.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/NSDate+YYAdd.d"],"deps-style":"makefile","signature":"b85a5a16d5ecd7c9897425469a847606"}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/NSDictionary+YYAdd.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/Foundation/NSDictionary+YYAdd.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/NSDictionary+YYAdd.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/Foundation/NSDictionary+YYAdd.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/Foundation/NSDictionary+YYAdd.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/module.modulemap","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--generated-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--phase0-copy-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/NSDictionary+YYAdd.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=YYKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/NSDictionary+YYAdd.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/NSDictionary+YYAdd.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/Foundation/NSDictionary+YYAdd.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/NSDictionary+YYAdd.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/NSDictionary+YYAdd.d"],"deps-style":"makefile","signature":"f046601e7fb7a73bbaf7241c24c1ea51"}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/NSKeyedUnarchiver+YYAdd.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/Foundation/NSKeyedUnarchiver+YYAdd.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/NSKeyedUnarchiver+YYAdd.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/Foundation/NSKeyedUnarchiver+YYAdd.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/Foundation/NSKeyedUnarchiver+YYAdd.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/module.modulemap","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--generated-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--phase0-copy-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/NSKeyedUnarchiver+YYAdd.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=YYKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/NSKeyedUnarchiver+YYAdd.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/NSKeyedUnarchiver+YYAdd.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/Foundation/NSKeyedUnarchiver+YYAdd.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/NSKeyedUnarchiver+YYAdd.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/NSKeyedUnarchiver+YYAdd.d"],"deps-style":"makefile","signature":"76c924f89e11ca19a193c9998cdf2ebf"}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/NSNotificationCenter+YYAdd.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/Foundation/NSNotificationCenter+YYAdd.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/NSNotificationCenter+YYAdd.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/Foundation/NSNotificationCenter+YYAdd.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/Foundation/NSNotificationCenter+YYAdd.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/module.modulemap","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--generated-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--phase0-copy-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/NSNotificationCenter+YYAdd.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=YYKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/NSNotificationCenter+YYAdd.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/NSNotificationCenter+YYAdd.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/Foundation/NSNotificationCenter+YYAdd.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/NSNotificationCenter+YYAdd.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/NSNotificationCenter+YYAdd.d"],"deps-style":"makefile","signature":"7b8c54359cc40ce08ff79410f6885ce6"}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/NSNumber+YYAdd.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/Foundation/NSNumber+YYAdd.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/NSNumber+YYAdd.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/Foundation/NSNumber+YYAdd.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/Foundation/NSNumber+YYAdd.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/module.modulemap","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--generated-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--phase0-copy-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/NSNumber+YYAdd.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=YYKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/NSNumber+YYAdd.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/NSNumber+YYAdd.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/Foundation/NSNumber+YYAdd.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/NSNumber+YYAdd.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/NSNumber+YYAdd.d"],"deps-style":"makefile","signature":"bb5cdb1c3066e2a615cea72598ffcfb6"}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/NSObject+YYAdd.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/Foundation/NSObject+YYAdd.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/NSObject+YYAdd.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/Foundation/NSObject+YYAdd.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/Foundation/NSObject+YYAdd.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/module.modulemap","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--generated-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--phase0-copy-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/NSObject+YYAdd.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=YYKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/NSObject+YYAdd.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/NSObject+YYAdd.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/Foundation/NSObject+YYAdd.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/NSObject+YYAdd.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/NSObject+YYAdd.d"],"deps-style":"makefile","signature":"8d000d499b682047b19f9270f72d6d4f"}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/NSObject+YYAddForARC.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/Foundation/NSObject+YYAddForARC.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/NSObject+YYAddForARC.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/Foundation/NSObject+YYAddForARC.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/Foundation/NSObject+YYAddForARC.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/module.modulemap","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--generated-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--phase0-copy-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/NSObject+YYAddForARC.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=YYKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-fno-objc-arc","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/NSObject+YYAddForARC.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/NSObject+YYAddForARC.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/Foundation/NSObject+YYAddForARC.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/NSObject+YYAddForARC.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/NSObject+YYAddForARC.d"],"deps-style":"makefile","signature":"6d10b9a2481fa962da15f114ba56d1ae"}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/NSObject+YYAddForKVO.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/Foundation/NSObject+YYAddForKVO.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/NSObject+YYAddForKVO.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/Foundation/NSObject+YYAddForKVO.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/Foundation/NSObject+YYAddForKVO.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/module.modulemap","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--generated-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--phase0-copy-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/NSObject+YYAddForKVO.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=YYKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/NSObject+YYAddForKVO.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/NSObject+YYAddForKVO.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/Foundation/NSObject+YYAddForKVO.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/NSObject+YYAddForKVO.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/NSObject+YYAddForKVO.d"],"deps-style":"makefile","signature":"25fcdf5bfc0e31d219f7cc8e1c32f6e5"}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/NSObject+YYModel.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Model/NSObject+YYModel.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/NSObject+YYModel.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Model/NSObject+YYModel.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Model/NSObject+YYModel.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/module.modulemap","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--generated-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--phase0-copy-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/NSObject+YYModel.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=YYKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/NSObject+YYModel.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/NSObject+YYModel.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Model/NSObject+YYModel.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/NSObject+YYModel.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/NSObject+YYModel.d"],"deps-style":"makefile","signature":"2d6930df255d69555eba2dcbf0582475"}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/NSParagraphStyle+YYText.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Text/String/NSParagraphStyle+YYText.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/NSParagraphStyle+YYText.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Text/String/NSParagraphStyle+YYText.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Text/String/NSParagraphStyle+YYText.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/module.modulemap","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--generated-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--phase0-copy-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/NSParagraphStyle+YYText.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=YYKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/NSParagraphStyle+YYText.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/NSParagraphStyle+YYText.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Text/String/NSParagraphStyle+YYText.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/NSParagraphStyle+YYText.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/NSParagraphStyle+YYText.d"],"deps-style":"makefile","signature":"b0e86aa357887e084f6576cedbe5f209"}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/NSString+YYAdd.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/Foundation/NSString+YYAdd.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/NSString+YYAdd.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/Foundation/NSString+YYAdd.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/Foundation/NSString+YYAdd.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/module.modulemap","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--generated-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--phase0-copy-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/NSString+YYAdd.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=YYKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/NSString+YYAdd.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/NSString+YYAdd.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/Foundation/NSString+YYAdd.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/NSString+YYAdd.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/NSString+YYAdd.d"],"deps-style":"makefile","signature":"97b5288ef249a858db18e4fdc6487c33"}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/NSThread+YYAdd.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/Foundation/NSThread+YYAdd.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/NSThread+YYAdd.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/Foundation/NSThread+YYAdd.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/Foundation/NSThread+YYAdd.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/module.modulemap","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--generated-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--phase0-copy-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/NSThread+YYAdd.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=YYKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-fno-objc-arc","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/NSThread+YYAdd.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/NSThread+YYAdd.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/Foundation/NSThread+YYAdd.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/NSThread+YYAdd.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/NSThread+YYAdd.d"],"deps-style":"makefile","signature":"0960958e259e047c81ff0d402e56c7c5"}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/NSTimer+YYAdd.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/Foundation/NSTimer+YYAdd.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/NSTimer+YYAdd.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/Foundation/NSTimer+YYAdd.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/Foundation/NSTimer+YYAdd.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/module.modulemap","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--generated-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--phase0-copy-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/NSTimer+YYAdd.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=YYKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/NSTimer+YYAdd.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/NSTimer+YYAdd.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/Foundation/NSTimer+YYAdd.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/NSTimer+YYAdd.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/NSTimer+YYAdd.d"],"deps-style":"makefile","signature":"e567aa33556bcc68e11e7307e0c9231c"}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/UIApplication+YYAdd.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/UIKit/UIApplication+YYAdd.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/UIApplication+YYAdd.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/UIKit/UIApplication+YYAdd.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/UIKit/UIApplication+YYAdd.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/module.modulemap","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--generated-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--phase0-copy-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/UIApplication+YYAdd.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=YYKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/UIApplication+YYAdd.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/UIApplication+YYAdd.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/UIKit/UIApplication+YYAdd.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/UIApplication+YYAdd.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/UIApplication+YYAdd.d"],"deps-style":"makefile","signature":"58215386ea9d57abcab9ef8c4457e104"}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/UIBarButtonItem+YYAdd.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/UIKit/UIBarButtonItem+YYAdd.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/UIBarButtonItem+YYAdd.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/UIKit/UIBarButtonItem+YYAdd.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/UIKit/UIBarButtonItem+YYAdd.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/module.modulemap","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--generated-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--phase0-copy-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/UIBarButtonItem+YYAdd.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=YYKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/UIBarButtonItem+YYAdd.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/UIBarButtonItem+YYAdd.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/UIKit/UIBarButtonItem+YYAdd.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/UIBarButtonItem+YYAdd.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/UIBarButtonItem+YYAdd.d"],"deps-style":"makefile","signature":"9057945f30e862bb451e938e6b1dd052"}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/UIBezierPath+YYAdd.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/UIKit/UIBezierPath+YYAdd.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/UIBezierPath+YYAdd.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/UIKit/UIBezierPath+YYAdd.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/UIKit/UIBezierPath+YYAdd.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/module.modulemap","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--generated-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--phase0-copy-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/UIBezierPath+YYAdd.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=YYKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/UIBezierPath+YYAdd.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/UIBezierPath+YYAdd.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/UIKit/UIBezierPath+YYAdd.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/UIBezierPath+YYAdd.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/UIBezierPath+YYAdd.d"],"deps-style":"makefile","signature":"522749010593486d37e7eaeeef5c6d7c"}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/UIButton+YYWebImage.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Image/Categories/UIButton+YYWebImage.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/UIButton+YYWebImage.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Image/Categories/UIButton+YYWebImage.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Image/Categories/UIButton+YYWebImage.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/module.modulemap","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--generated-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--phase0-copy-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/UIButton+YYWebImage.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=YYKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/UIButton+YYWebImage.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/UIButton+YYWebImage.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Image/Categories/UIButton+YYWebImage.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/UIButton+YYWebImage.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/UIButton+YYWebImage.d"],"deps-style":"makefile","signature":"973fc84e61fffc09f9a99cf07e4d0c1e"}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/UIColor+YYAdd.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/UIKit/UIColor+YYAdd.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/UIColor+YYAdd.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/UIKit/UIColor+YYAdd.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/UIKit/UIColor+YYAdd.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/module.modulemap","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--generated-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--phase0-copy-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/UIColor+YYAdd.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=YYKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/UIColor+YYAdd.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/UIColor+YYAdd.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/UIKit/UIColor+YYAdd.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/UIColor+YYAdd.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/UIColor+YYAdd.d"],"deps-style":"makefile","signature":"bf0168ba960c12377228ebe858bd9a5b"}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/UIControl+YYAdd.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/UIKit/UIControl+YYAdd.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/UIControl+YYAdd.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/UIKit/UIControl+YYAdd.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/UIKit/UIControl+YYAdd.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/module.modulemap","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--generated-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--phase0-copy-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/UIControl+YYAdd.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=YYKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/UIControl+YYAdd.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/UIControl+YYAdd.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/UIKit/UIControl+YYAdd.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/UIControl+YYAdd.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/UIControl+YYAdd.d"],"deps-style":"makefile","signature":"ad310e66484e87e42f0f300ccc3b5ade"}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/UIDevice+YYAdd.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/UIKit/UIDevice+YYAdd.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/UIDevice+YYAdd.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/UIKit/UIDevice+YYAdd.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/UIKit/UIDevice+YYAdd.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/module.modulemap","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--generated-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--phase0-copy-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/UIDevice+YYAdd.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=YYKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/UIDevice+YYAdd.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/UIDevice+YYAdd.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/UIKit/UIDevice+YYAdd.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/UIDevice+YYAdd.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/UIDevice+YYAdd.d"],"deps-style":"makefile","signature":"23ef9dcfe0c5bf6d083b18b11eadbf58"}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/UIFont+YYAdd.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/UIKit/UIFont+YYAdd.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/UIFont+YYAdd.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/UIKit/UIFont+YYAdd.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/UIKit/UIFont+YYAdd.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/module.modulemap","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--generated-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--phase0-copy-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/UIFont+YYAdd.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=YYKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/UIFont+YYAdd.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/UIFont+YYAdd.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/UIKit/UIFont+YYAdd.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/UIFont+YYAdd.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/UIFont+YYAdd.d"],"deps-style":"makefile","signature":"02f8ed1847180bd3de46cacc4ca857aa"}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/UIGestureRecognizer+YYAdd.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/UIKit/UIGestureRecognizer+YYAdd.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/UIGestureRecognizer+YYAdd.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/UIKit/UIGestureRecognizer+YYAdd.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/UIKit/UIGestureRecognizer+YYAdd.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/module.modulemap","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--generated-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--phase0-copy-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/UIGestureRecognizer+YYAdd.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=YYKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/UIGestureRecognizer+YYAdd.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/UIGestureRecognizer+YYAdd.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/UIKit/UIGestureRecognizer+YYAdd.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/UIGestureRecognizer+YYAdd.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/UIGestureRecognizer+YYAdd.d"],"deps-style":"makefile","signature":"43d77794194019c44f6df1d49c432e54"}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/UIImage+YYAdd.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/UIKit/UIImage+YYAdd.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/UIImage+YYAdd.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/UIKit/UIImage+YYAdd.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/UIKit/UIImage+YYAdd.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/module.modulemap","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--generated-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--phase0-copy-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/UIImage+YYAdd.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=YYKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/UIImage+YYAdd.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/UIImage+YYAdd.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/UIKit/UIImage+YYAdd.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/UIImage+YYAdd.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/UIImage+YYAdd.d"],"deps-style":"makefile","signature":"72d93c6e531804cd9d93ad800fccd808"}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/UIImageView+YYWebImage.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Image/Categories/UIImageView+YYWebImage.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/UIImageView+YYWebImage.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Image/Categories/UIImageView+YYWebImage.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Image/Categories/UIImageView+YYWebImage.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/module.modulemap","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--generated-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--phase0-copy-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/UIImageView+YYWebImage.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=YYKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/UIImageView+YYWebImage.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/UIImageView+YYWebImage.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Image/Categories/UIImageView+YYWebImage.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/UIImageView+YYWebImage.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/UIImageView+YYWebImage.d"],"deps-style":"makefile","signature":"54e6c6327b003c592ae08ac8b9d4e25d"}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/UIPasteboard+YYText.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Text/String/UIPasteboard+YYText.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/UIPasteboard+YYText.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Text/String/UIPasteboard+YYText.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Text/String/UIPasteboard+YYText.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/module.modulemap","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--generated-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--phase0-copy-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/UIPasteboard+YYText.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=YYKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/UIPasteboard+YYText.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/UIPasteboard+YYText.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Text/String/UIPasteboard+YYText.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/UIPasteboard+YYText.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/UIPasteboard+YYText.d"],"deps-style":"makefile","signature":"d67c62d4bdd040728dc022f88ab4e440"}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/UIScreen+YYAdd.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/UIKit/UIScreen+YYAdd.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/UIScreen+YYAdd.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/UIKit/UIScreen+YYAdd.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/UIKit/UIScreen+YYAdd.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/module.modulemap","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--generated-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--phase0-copy-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/UIScreen+YYAdd.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=YYKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/UIScreen+YYAdd.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/UIScreen+YYAdd.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/UIKit/UIScreen+YYAdd.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/UIScreen+YYAdd.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/UIScreen+YYAdd.d"],"deps-style":"makefile","signature":"eca92aa0ab8f249e679509d9f808f191"}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/UIScrollView+YYAdd.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/UIKit/UIScrollView+YYAdd.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/UIScrollView+YYAdd.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/UIKit/UIScrollView+YYAdd.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/UIKit/UIScrollView+YYAdd.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/module.modulemap","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--generated-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--phase0-copy-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/UIScrollView+YYAdd.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=YYKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/UIScrollView+YYAdd.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/UIScrollView+YYAdd.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/UIKit/UIScrollView+YYAdd.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/UIScrollView+YYAdd.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/UIScrollView+YYAdd.d"],"deps-style":"makefile","signature":"dc0acb076e903a3355a9384561f26e39"}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/UITableView+YYAdd.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/UIKit/UITableView+YYAdd.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/UITableView+YYAdd.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/UIKit/UITableView+YYAdd.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/UIKit/UITableView+YYAdd.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/module.modulemap","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--generated-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--phase0-copy-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/UITableView+YYAdd.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=YYKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/UITableView+YYAdd.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/UITableView+YYAdd.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/UIKit/UITableView+YYAdd.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/UITableView+YYAdd.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/UITableView+YYAdd.d"],"deps-style":"makefile","signature":"0bf9d81110d3a585692f4b556e2dc572"}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/UITextField+YYAdd.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/UIKit/UITextField+YYAdd.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/UITextField+YYAdd.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/UIKit/UITextField+YYAdd.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/UIKit/UITextField+YYAdd.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/module.modulemap","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--generated-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--phase0-copy-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/UITextField+YYAdd.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=YYKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/UITextField+YYAdd.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/UITextField+YYAdd.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/UIKit/UITextField+YYAdd.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/UITextField+YYAdd.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/UITextField+YYAdd.d"],"deps-style":"makefile","signature":"8e23c7baeba4b6e8df7ff246173084ca"}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/UIView+YYAdd.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/UIKit/UIView+YYAdd.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/UIView+YYAdd.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/UIKit/UIView+YYAdd.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/UIKit/UIView+YYAdd.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/module.modulemap","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--generated-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--phase0-copy-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/UIView+YYAdd.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=YYKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/UIView+YYAdd.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/UIView+YYAdd.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/UIKit/UIView+YYAdd.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/UIView+YYAdd.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/UIView+YYAdd.d"],"deps-style":"makefile","signature":"a8f50f78394584aff071fa2c8e0f776c"}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYAnimatedImageView.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Image/YYAnimatedImageView.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYAnimatedImageView.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Image/YYAnimatedImageView.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Image/YYAnimatedImageView.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/module.modulemap","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--generated-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--phase0-copy-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYAnimatedImageView.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=YYKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYAnimatedImageView.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYAnimatedImageView.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Image/YYAnimatedImageView.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYAnimatedImageView.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYAnimatedImageView.d"],"deps-style":"makefile","signature":"f1d34d92d9e918ff0f427f86ab93b15d"}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYAsyncLayer.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Utility/YYAsyncLayer.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYAsyncLayer.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Utility/YYAsyncLayer.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Utility/YYAsyncLayer.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/module.modulemap","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--generated-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--phase0-copy-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYAsyncLayer.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=YYKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYAsyncLayer.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYAsyncLayer.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Utility/YYAsyncLayer.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYAsyncLayer.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYAsyncLayer.d"],"deps-style":"makefile","signature":"800618559993f66c58c40516c0a3dff8"}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYCGUtilities.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/Quartz/YYCGUtilities.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYCGUtilities.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/Quartz/YYCGUtilities.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/Quartz/YYCGUtilities.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/module.modulemap","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--generated-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--phase0-copy-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYCGUtilities.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=YYKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYCGUtilities.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYCGUtilities.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/Quartz/YYCGUtilities.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYCGUtilities.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYCGUtilities.d"],"deps-style":"makefile","signature":"a82dda2317981488b291b3614406a82d"}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYCache.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Cache/YYCache.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYCache.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Cache/YYCache.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Cache/YYCache.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/module.modulemap","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--generated-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--phase0-copy-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYCache.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=YYKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYCache.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYCache.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Cache/YYCache.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYCache.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYCache.d"],"deps-style":"makefile","signature":"34241574496bf25f9b1576b57b0a6182"}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYClassInfo.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Model/YYClassInfo.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYClassInfo.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Model/YYClassInfo.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Model/YYClassInfo.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/module.modulemap","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--generated-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--phase0-copy-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYClassInfo.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=YYKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYClassInfo.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYClassInfo.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Model/YYClassInfo.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYClassInfo.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYClassInfo.d"],"deps-style":"makefile","signature":"912a85d519269d469a97afdb3091817a"}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYDiskCache.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Cache/YYDiskCache.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYDiskCache.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Cache/YYDiskCache.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Cache/YYDiskCache.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/module.modulemap","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--generated-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--phase0-copy-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYDiskCache.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=YYKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYDiskCache.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYDiskCache.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Cache/YYDiskCache.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYDiskCache.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYDiskCache.d"],"deps-style":"makefile","signature":"9185cc21f821dd047fca5caa49b4035c"}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYDispatchQueuePool.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Utility/YYDispatchQueuePool.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYDispatchQueuePool.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Utility/YYDispatchQueuePool.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Utility/YYDispatchQueuePool.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/module.modulemap","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--generated-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--phase0-copy-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYDispatchQueuePool.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=YYKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYDispatchQueuePool.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYDispatchQueuePool.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Utility/YYDispatchQueuePool.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYDispatchQueuePool.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYDispatchQueuePool.d"],"deps-style":"makefile","signature":"f836107e094093a527bd2ad21e4c7cac"}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYFileHash.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Utility/YYFileHash.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYFileHash.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Utility/YYFileHash.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Utility/YYFileHash.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/module.modulemap","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--generated-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--phase0-copy-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYFileHash.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=YYKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYFileHash.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYFileHash.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Utility/YYFileHash.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYFileHash.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYFileHash.d"],"deps-style":"makefile","signature":"3da0a887b1a2247c215df7c371504d40"}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYFrameImage.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Image/YYFrameImage.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYFrameImage.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Image/YYFrameImage.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Image/YYFrameImage.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/module.modulemap","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--generated-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--phase0-copy-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYFrameImage.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=YYKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYFrameImage.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYFrameImage.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Image/YYFrameImage.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYFrameImage.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYFrameImage.d"],"deps-style":"makefile","signature":"82a6cbb20eb3fc365e542905f6a0738e"}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYGestureRecognizer.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Utility/YYGestureRecognizer.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYGestureRecognizer.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Utility/YYGestureRecognizer.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Utility/YYGestureRecognizer.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/module.modulemap","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--generated-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--phase0-copy-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYGestureRecognizer.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=YYKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYGestureRecognizer.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYGestureRecognizer.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Utility/YYGestureRecognizer.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYGestureRecognizer.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYGestureRecognizer.d"],"deps-style":"makefile","signature":"118365e845162b1ac05a18632742d1de"}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYImage.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Image/YYImage.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYImage.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Image/YYImage.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Image/YYImage.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/module.modulemap","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--generated-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--phase0-copy-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYImage.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=YYKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYImage.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYImage.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Image/YYImage.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYImage.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYImage.d"],"deps-style":"makefile","signature":"b883c5459c04ecc30bad6d27b4fb2ed4"}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYImageCache.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Image/YYImageCache.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYImageCache.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Image/YYImageCache.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Image/YYImageCache.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/module.modulemap","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--generated-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--phase0-copy-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYImageCache.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=YYKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYImageCache.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYImageCache.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Image/YYImageCache.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYImageCache.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYImageCache.d"],"deps-style":"makefile","signature":"5bfce01eee08605cb1677db2b89688a5"}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYImageCoder.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Image/YYImageCoder.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYImageCoder.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Image/YYImageCoder.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Image/YYImageCoder.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/module.modulemap","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--generated-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--phase0-copy-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYImageCoder.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=YYKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYImageCoder.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYImageCoder.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Image/YYImageCoder.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYImageCoder.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYImageCoder.d"],"deps-style":"makefile","signature":"e33f5b121e320b47a3484e5b2ccbd2c2"}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYKVStorage.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Cache/YYKVStorage.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYKVStorage.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Cache/YYKVStorage.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Cache/YYKVStorage.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/module.modulemap","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--generated-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--phase0-copy-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYKVStorage.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=YYKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYKVStorage.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYKVStorage.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Cache/YYKVStorage.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYKVStorage.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYKVStorage.d"],"deps-style":"makefile","signature":"891a8e96d54dc9cec865d0a3ede748ff"}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYKeychain.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Utility/YYKeychain.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYKeychain.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Utility/YYKeychain.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Utility/YYKeychain.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/module.modulemap","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--generated-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--phase0-copy-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYKeychain.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=YYKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYKeychain.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYKeychain.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Utility/YYKeychain.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYKeychain.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYKeychain.d"],"deps-style":"makefile","signature":"11ce6ce7a6303765444b9a5f5f448ca5"}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYKit-dummy.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-dummy.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYKit-dummy.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-dummy.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-dummy.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/module.modulemap","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--generated-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--phase0-copy-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYKit-dummy.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=YYKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYKit-dummy.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYKit-dummy.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-dummy.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYKit-dummy.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYKit-dummy.d"],"deps-style":"makefile","signature":"4c673b982728ea112fb3c7d5b23678e8"}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYKit_vers.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources/YYKit_vers.c normal arm64 c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYKit_vers.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources/YYKit_vers.c normal arm64 c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources/YYKit_vers.c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/module.modulemap","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--generated-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--phase0-copy-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYKit_vers.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c","-target","arm64-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=YYKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Werror=deprecated-objc-isa-usage","-Werror=objc-root-class","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYKit_vers.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYKit_vers.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources/YYKit_vers.c","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYKit_vers.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYKit_vers.d"],"deps-style":"makefile","signature":"e1af03d5b58c27e750b958193b758535"}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYLabel.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Text/YYLabel.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYLabel.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Text/YYLabel.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Text/YYLabel.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/module.modulemap","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--generated-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--phase0-copy-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYLabel.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=YYKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYLabel.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYLabel.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Text/YYLabel.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYLabel.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYLabel.d"],"deps-style":"makefile","signature":"95b24ad32266c9441809b8ecb2fed983"}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYMemoryCache.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Cache/YYMemoryCache.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYMemoryCache.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Cache/YYMemoryCache.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Cache/YYMemoryCache.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/module.modulemap","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--generated-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--phase0-copy-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYMemoryCache.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=YYKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYMemoryCache.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYMemoryCache.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Cache/YYMemoryCache.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYMemoryCache.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYMemoryCache.d"],"deps-style":"makefile","signature":"816a116a280be8abe559af446624e904"}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYReachability.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Utility/YYReachability.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYReachability.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Utility/YYReachability.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Utility/YYReachability.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/module.modulemap","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--generated-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--phase0-copy-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYReachability.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=YYKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYReachability.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYReachability.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Utility/YYReachability.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYReachability.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYReachability.d"],"deps-style":"makefile","signature":"40e70e285d7ca7bd074528ccf112332d"}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYSentinel.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Utility/YYSentinel.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYSentinel.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Utility/YYSentinel.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Utility/YYSentinel.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/module.modulemap","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--generated-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--phase0-copy-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYSentinel.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=YYKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYSentinel.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYSentinel.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Utility/YYSentinel.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYSentinel.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYSentinel.d"],"deps-style":"makefile","signature":"b9068266ba6769bbe80fc3f99bb8e50d"}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYSpriteSheetImage.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Image/YYSpriteSheetImage.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYSpriteSheetImage.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Image/YYSpriteSheetImage.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Image/YYSpriteSheetImage.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/module.modulemap","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--generated-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--phase0-copy-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYSpriteSheetImage.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=YYKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYSpriteSheetImage.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYSpriteSheetImage.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Image/YYSpriteSheetImage.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYSpriteSheetImage.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYSpriteSheetImage.d"],"deps-style":"makefile","signature":"4f4d47960b60a71be031197ff03d50de"}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYTextArchiver.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Text/String/YYTextArchiver.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYTextArchiver.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Text/String/YYTextArchiver.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Text/String/YYTextArchiver.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/module.modulemap","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--generated-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--phase0-copy-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYTextArchiver.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=YYKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYTextArchiver.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYTextArchiver.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Text/String/YYTextArchiver.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYTextArchiver.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYTextArchiver.d"],"deps-style":"makefile","signature":"34b3d372924bac3a39010d78f5773beb"}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYTextAttribute.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Text/String/YYTextAttribute.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYTextAttribute.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Text/String/YYTextAttribute.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Text/String/YYTextAttribute.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/module.modulemap","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--generated-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--phase0-copy-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYTextAttribute.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=YYKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYTextAttribute.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYTextAttribute.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Text/String/YYTextAttribute.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYTextAttribute.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYTextAttribute.d"],"deps-style":"makefile","signature":"9277824bf183ed817960f7251f518f26"}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYTextContainerView.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Text/Component/YYTextContainerView.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYTextContainerView.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Text/Component/YYTextContainerView.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Text/Component/YYTextContainerView.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/module.modulemap","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--generated-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--phase0-copy-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYTextContainerView.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=YYKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYTextContainerView.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYTextContainerView.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Text/Component/YYTextContainerView.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYTextContainerView.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYTextContainerView.d"],"deps-style":"makefile","signature":"64a2f182e71c8cb4ebecda9a9e0069ee"}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYTextDebugOption.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Text/Component/YYTextDebugOption.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYTextDebugOption.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Text/Component/YYTextDebugOption.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Text/Component/YYTextDebugOption.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/module.modulemap","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--generated-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--phase0-copy-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYTextDebugOption.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=YYKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYTextDebugOption.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYTextDebugOption.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Text/Component/YYTextDebugOption.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYTextDebugOption.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYTextDebugOption.d"],"deps-style":"makefile","signature":"9ef4bac931b488ef82c208beb9b2df08"}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYTextEffectWindow.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Text/Component/YYTextEffectWindow.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYTextEffectWindow.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Text/Component/YYTextEffectWindow.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Text/Component/YYTextEffectWindow.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/module.modulemap","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--generated-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--phase0-copy-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYTextEffectWindow.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=YYKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYTextEffectWindow.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYTextEffectWindow.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Text/Component/YYTextEffectWindow.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYTextEffectWindow.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYTextEffectWindow.d"],"deps-style":"makefile","signature":"d31ff3c1cd42c24e9da8b58589d6ebff"}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYTextInput.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Text/Component/YYTextInput.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYTextInput.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Text/Component/YYTextInput.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Text/Component/YYTextInput.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/module.modulemap","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--generated-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--phase0-copy-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYTextInput.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=YYKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYTextInput.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYTextInput.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Text/Component/YYTextInput.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYTextInput.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYTextInput.d"],"deps-style":"makefile","signature":"c863eaeb4a394890ed6d088228cfbeba"}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYTextKeyboardManager.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Text/Component/YYTextKeyboardManager.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYTextKeyboardManager.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Text/Component/YYTextKeyboardManager.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Text/Component/YYTextKeyboardManager.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/module.modulemap","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--generated-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--phase0-copy-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYTextKeyboardManager.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=YYKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYTextKeyboardManager.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYTextKeyboardManager.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Text/Component/YYTextKeyboardManager.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYTextKeyboardManager.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYTextKeyboardManager.d"],"deps-style":"makefile","signature":"4b03b5bf5732152d02b557f9e345b76a"}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYTextLayout.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Text/Component/YYTextLayout.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYTextLayout.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Text/Component/YYTextLayout.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Text/Component/YYTextLayout.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/module.modulemap","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--generated-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--phase0-copy-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYTextLayout.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=YYKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYTextLayout.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYTextLayout.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Text/Component/YYTextLayout.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYTextLayout.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYTextLayout.d"],"deps-style":"makefile","signature":"4843277c9a7eb422d280ef8638f84f7b"}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYTextLine.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Text/Component/YYTextLine.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYTextLine.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Text/Component/YYTextLine.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Text/Component/YYTextLine.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/module.modulemap","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--generated-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--phase0-copy-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYTextLine.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=YYKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYTextLine.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYTextLine.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Text/Component/YYTextLine.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYTextLine.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYTextLine.d"],"deps-style":"makefile","signature":"bc12cead897c441b7904563cb4fedebd"}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYTextMagnifier.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Text/Component/YYTextMagnifier.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYTextMagnifier.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Text/Component/YYTextMagnifier.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Text/Component/YYTextMagnifier.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/module.modulemap","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--generated-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--phase0-copy-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYTextMagnifier.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=YYKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYTextMagnifier.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYTextMagnifier.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Text/Component/YYTextMagnifier.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYTextMagnifier.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYTextMagnifier.d"],"deps-style":"makefile","signature":"7f334db90d684bdc14f0f3b2fdc157ee"}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYTextParser.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Text/String/YYTextParser.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYTextParser.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Text/String/YYTextParser.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Text/String/YYTextParser.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/module.modulemap","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--generated-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--phase0-copy-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYTextParser.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=YYKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYTextParser.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYTextParser.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Text/String/YYTextParser.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYTextParser.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYTextParser.d"],"deps-style":"makefile","signature":"b0c5fe1c3235ee346408177800fd93eb"}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYTextRubyAnnotation.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Text/String/YYTextRubyAnnotation.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYTextRubyAnnotation.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Text/String/YYTextRubyAnnotation.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Text/String/YYTextRubyAnnotation.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/module.modulemap","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--generated-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--phase0-copy-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYTextRubyAnnotation.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=YYKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYTextRubyAnnotation.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYTextRubyAnnotation.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Text/String/YYTextRubyAnnotation.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYTextRubyAnnotation.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYTextRubyAnnotation.d"],"deps-style":"makefile","signature":"789916556d99f7569dbaa08c6334ddf7"}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYTextRunDelegate.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Text/String/YYTextRunDelegate.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYTextRunDelegate.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Text/String/YYTextRunDelegate.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Text/String/YYTextRunDelegate.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/module.modulemap","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--generated-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--phase0-copy-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYTextRunDelegate.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=YYKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYTextRunDelegate.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYTextRunDelegate.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Text/String/YYTextRunDelegate.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYTextRunDelegate.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYTextRunDelegate.d"],"deps-style":"makefile","signature":"0b389499bcb4611f8350c8a9154eb818"}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYTextSelectionView.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Text/Component/YYTextSelectionView.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYTextSelectionView.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Text/Component/YYTextSelectionView.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Text/Component/YYTextSelectionView.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/module.modulemap","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--generated-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--phase0-copy-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYTextSelectionView.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=YYKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYTextSelectionView.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYTextSelectionView.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Text/Component/YYTextSelectionView.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYTextSelectionView.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYTextSelectionView.d"],"deps-style":"makefile","signature":"e919c5f898a7d6f496249e60d645cd21"}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYTextUtilities.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Text/String/YYTextUtilities.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYTextUtilities.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Text/String/YYTextUtilities.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Text/String/YYTextUtilities.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/module.modulemap","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--generated-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--phase0-copy-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYTextUtilities.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=YYKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYTextUtilities.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYTextUtilities.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Text/String/YYTextUtilities.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYTextUtilities.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYTextUtilities.d"],"deps-style":"makefile","signature":"7b5b3ac647d5505d847874109761caf7"}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYTextView.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Text/YYTextView.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYTextView.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Text/YYTextView.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Text/YYTextView.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/module.modulemap","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--generated-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--phase0-copy-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYTextView.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=YYKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYTextView.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYTextView.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Text/YYTextView.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYTextView.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYTextView.d"],"deps-style":"makefile","signature":"68656cc4c362f2ea37eff3fa85f60486"}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYThreadSafeArray.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Utility/YYThreadSafeArray.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYThreadSafeArray.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Utility/YYThreadSafeArray.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Utility/YYThreadSafeArray.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/module.modulemap","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--generated-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--phase0-copy-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYThreadSafeArray.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=YYKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYThreadSafeArray.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYThreadSafeArray.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Utility/YYThreadSafeArray.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYThreadSafeArray.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYThreadSafeArray.d"],"deps-style":"makefile","signature":"0b0c0d58d229e06ca6ed7295a0fe73d6"}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYThreadSafeDictionary.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Utility/YYThreadSafeDictionary.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYThreadSafeDictionary.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Utility/YYThreadSafeDictionary.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Utility/YYThreadSafeDictionary.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/module.modulemap","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--generated-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--phase0-copy-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYThreadSafeDictionary.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=YYKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYThreadSafeDictionary.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYThreadSafeDictionary.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Utility/YYThreadSafeDictionary.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYThreadSafeDictionary.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYThreadSafeDictionary.d"],"deps-style":"makefile","signature":"3cb2bd908858a360b5760cf68ac6e725"}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYTimer.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Utility/YYTimer.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYTimer.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Utility/YYTimer.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Utility/YYTimer.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/module.modulemap","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--generated-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--phase0-copy-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYTimer.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=YYKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYTimer.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYTimer.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Utility/YYTimer.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYTimer.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYTimer.d"],"deps-style":"makefile","signature":"8bc59edcb74feb4addf7d86032c67e54"}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYTransaction.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Utility/YYTransaction.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYTransaction.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Utility/YYTransaction.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Utility/YYTransaction.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/module.modulemap","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--generated-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--phase0-copy-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYTransaction.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=YYKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYTransaction.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYTransaction.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Utility/YYTransaction.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYTransaction.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYTransaction.d"],"deps-style":"makefile","signature":"a82583f7326fa1e87c1ca39ab8213911"}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYWeakProxy.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Utility/YYWeakProxy.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYWeakProxy.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Utility/YYWeakProxy.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Utility/YYWeakProxy.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/module.modulemap","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--generated-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--phase0-copy-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYWeakProxy.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=YYKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYWeakProxy.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYWeakProxy.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Utility/YYWeakProxy.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYWeakProxy.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYWeakProxy.d"],"deps-style":"makefile","signature":"858f1009a292cbf9ee49cbbeec2ca28d"}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYWebImageManager.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Image/YYWebImageManager.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYWebImageManager.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Image/YYWebImageManager.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Image/YYWebImageManager.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/module.modulemap","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--generated-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--phase0-copy-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYWebImageManager.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=YYKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYWebImageManager.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYWebImageManager.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Image/YYWebImageManager.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYWebImageManager.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYWebImageManager.d"],"deps-style":"makefile","signature":"0325ae4d658d1af02d51d8a84a8ada66"}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYWebImageOperation.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Image/YYWebImageOperation.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYWebImageOperation.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Image/YYWebImageOperation.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Image/YYWebImageOperation.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/module.modulemap","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--generated-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--phase0-copy-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYWebImageOperation.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=YYKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYWebImageOperation.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYWebImageOperation.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Image/YYWebImageOperation.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYWebImageOperation.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYWebImageOperation.d"],"deps-style":"makefile","signature":"f33bedbea219bb5970e6ef3d93363890"}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/_YYWebImageSetter.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Image/Categories/_YYWebImageSetter.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/_YYWebImageSetter.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Image/Categories/_YYWebImageSetter.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Image/Categories/_YYWebImageSetter.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/module.modulemap","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--generated-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--phase0-copy-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/_YYWebImageSetter.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","arm64-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=YYKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources-normal/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources/arm64","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/_YYWebImageSetter.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/_YYWebImageSetter.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Image/Categories/_YYWebImageSetter.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/_YYWebImageSetter.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/_YYWebImageSetter.d"],"deps-style":"makefile","signature":"6c1090a7a0c85189db41661e9e5960f4"}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/CALayer+YYAdd.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/Quartz/CALayer+YYAdd.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/CALayer+YYAdd.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/Quartz/CALayer+YYAdd.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/Quartz/CALayer+YYAdd.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/module.modulemap","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--generated-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--phase0-copy-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/CALayer+YYAdd.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=YYKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/CALayer+YYAdd.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/CALayer+YYAdd.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/Quartz/CALayer+YYAdd.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/CALayer+YYAdd.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/CALayer+YYAdd.d"],"deps-style":"makefile","signature":"c4552608ca542d3db3dbe58a1f88a084"}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/CALayer+YYWebImage.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Image/Categories/CALayer+YYWebImage.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/CALayer+YYWebImage.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Image/Categories/CALayer+YYWebImage.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Image/Categories/CALayer+YYWebImage.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/module.modulemap","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--generated-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--phase0-copy-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/CALayer+YYWebImage.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=YYKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/CALayer+YYWebImage.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/CALayer+YYWebImage.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Image/Categories/CALayer+YYWebImage.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/CALayer+YYWebImage.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/CALayer+YYWebImage.d"],"deps-style":"makefile","signature":"780700df3e0bfe1e9786d5f2d13d6326"}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/MKAnnotationView+YYWebImage.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Image/Categories/MKAnnotationView+YYWebImage.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/MKAnnotationView+YYWebImage.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Image/Categories/MKAnnotationView+YYWebImage.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Image/Categories/MKAnnotationView+YYWebImage.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/module.modulemap","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--generated-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--phase0-copy-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/MKAnnotationView+YYWebImage.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=YYKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/MKAnnotationView+YYWebImage.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/MKAnnotationView+YYWebImage.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Image/Categories/MKAnnotationView+YYWebImage.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/MKAnnotationView+YYWebImage.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/MKAnnotationView+YYWebImage.d"],"deps-style":"makefile","signature":"018fa53a8783bdf98bf0b13cfb0896f6"}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/NSArray+YYAdd.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/Foundation/NSArray+YYAdd.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/NSArray+YYAdd.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/Foundation/NSArray+YYAdd.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/Foundation/NSArray+YYAdd.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/module.modulemap","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--generated-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--phase0-copy-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/NSArray+YYAdd.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=YYKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/NSArray+YYAdd.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/NSArray+YYAdd.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/Foundation/NSArray+YYAdd.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/NSArray+YYAdd.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/NSArray+YYAdd.d"],"deps-style":"makefile","signature":"015bbd86c5e006359377f1ef5724a41c"}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/NSAttributedString+YYText.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Text/String/NSAttributedString+YYText.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/NSAttributedString+YYText.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Text/String/NSAttributedString+YYText.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Text/String/NSAttributedString+YYText.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/module.modulemap","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--generated-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--phase0-copy-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/NSAttributedString+YYText.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=YYKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/NSAttributedString+YYText.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/NSAttributedString+YYText.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Text/String/NSAttributedString+YYText.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/NSAttributedString+YYText.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/NSAttributedString+YYText.d"],"deps-style":"makefile","signature":"c2097e8d4203b07ecf215c4ba0e763b7"}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/NSBundle+YYAdd.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/Foundation/NSBundle+YYAdd.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/NSBundle+YYAdd.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/Foundation/NSBundle+YYAdd.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/Foundation/NSBundle+YYAdd.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/module.modulemap","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--generated-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--phase0-copy-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/NSBundle+YYAdd.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=YYKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/NSBundle+YYAdd.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/NSBundle+YYAdd.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/Foundation/NSBundle+YYAdd.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/NSBundle+YYAdd.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/NSBundle+YYAdd.d"],"deps-style":"makefile","signature":"e443bca058bf6533959aa9f3db92e957"}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/NSData+YYAdd.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/Foundation/NSData+YYAdd.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/NSData+YYAdd.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/Foundation/NSData+YYAdd.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/Foundation/NSData+YYAdd.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/module.modulemap","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--generated-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--phase0-copy-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/NSData+YYAdd.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=YYKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/NSData+YYAdd.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/NSData+YYAdd.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/Foundation/NSData+YYAdd.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/NSData+YYAdd.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/NSData+YYAdd.d"],"deps-style":"makefile","signature":"54127a423d3ea17ceb9c95bccc9ddbd2"}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/NSDate+YYAdd.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/Foundation/NSDate+YYAdd.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/NSDate+YYAdd.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/Foundation/NSDate+YYAdd.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/Foundation/NSDate+YYAdd.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/module.modulemap","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--generated-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--phase0-copy-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/NSDate+YYAdd.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=YYKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/NSDate+YYAdd.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/NSDate+YYAdd.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/Foundation/NSDate+YYAdd.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/NSDate+YYAdd.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/NSDate+YYAdd.d"],"deps-style":"makefile","signature":"d4b884300581a18b01918df148d895fb"}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/NSDictionary+YYAdd.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/Foundation/NSDictionary+YYAdd.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/NSDictionary+YYAdd.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/Foundation/NSDictionary+YYAdd.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/Foundation/NSDictionary+YYAdd.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/module.modulemap","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--generated-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--phase0-copy-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/NSDictionary+YYAdd.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=YYKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/NSDictionary+YYAdd.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/NSDictionary+YYAdd.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/Foundation/NSDictionary+YYAdd.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/NSDictionary+YYAdd.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/NSDictionary+YYAdd.d"],"deps-style":"makefile","signature":"d226f60c9ec9d9ecef15ca59c86bebc2"}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/NSKeyedUnarchiver+YYAdd.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/Foundation/NSKeyedUnarchiver+YYAdd.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/NSKeyedUnarchiver+YYAdd.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/Foundation/NSKeyedUnarchiver+YYAdd.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/Foundation/NSKeyedUnarchiver+YYAdd.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/module.modulemap","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--generated-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--phase0-copy-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/NSKeyedUnarchiver+YYAdd.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=YYKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/NSKeyedUnarchiver+YYAdd.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/NSKeyedUnarchiver+YYAdd.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/Foundation/NSKeyedUnarchiver+YYAdd.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/NSKeyedUnarchiver+YYAdd.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/NSKeyedUnarchiver+YYAdd.d"],"deps-style":"makefile","signature":"fba27b0231fea41a0a48ff8c88439512"}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/NSNotificationCenter+YYAdd.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/Foundation/NSNotificationCenter+YYAdd.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/NSNotificationCenter+YYAdd.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/Foundation/NSNotificationCenter+YYAdd.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/Foundation/NSNotificationCenter+YYAdd.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/module.modulemap","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--generated-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--phase0-copy-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/NSNotificationCenter+YYAdd.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=YYKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/NSNotificationCenter+YYAdd.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/NSNotificationCenter+YYAdd.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/Foundation/NSNotificationCenter+YYAdd.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/NSNotificationCenter+YYAdd.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/NSNotificationCenter+YYAdd.d"],"deps-style":"makefile","signature":"3735b9d15bae3697be0b24480f6e842c"}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/NSNumber+YYAdd.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/Foundation/NSNumber+YYAdd.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/NSNumber+YYAdd.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/Foundation/NSNumber+YYAdd.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/Foundation/NSNumber+YYAdd.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/module.modulemap","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--generated-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--phase0-copy-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/NSNumber+YYAdd.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=YYKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/NSNumber+YYAdd.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/NSNumber+YYAdd.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/Foundation/NSNumber+YYAdd.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/NSNumber+YYAdd.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/NSNumber+YYAdd.d"],"deps-style":"makefile","signature":"a2d20d768f0caf04920b3edc97763665"}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/NSObject+YYAdd.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/Foundation/NSObject+YYAdd.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/NSObject+YYAdd.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/Foundation/NSObject+YYAdd.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/Foundation/NSObject+YYAdd.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/module.modulemap","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--generated-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--phase0-copy-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/NSObject+YYAdd.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=YYKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/NSObject+YYAdd.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/NSObject+YYAdd.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/Foundation/NSObject+YYAdd.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/NSObject+YYAdd.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/NSObject+YYAdd.d"],"deps-style":"makefile","signature":"cc73302b83d031b7c051a9b749d907fa"}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/NSObject+YYAddForARC.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/Foundation/NSObject+YYAddForARC.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/NSObject+YYAddForARC.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/Foundation/NSObject+YYAddForARC.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/Foundation/NSObject+YYAddForARC.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/module.modulemap","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--generated-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--phase0-copy-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/NSObject+YYAddForARC.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=YYKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-fno-objc-arc","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/NSObject+YYAddForARC.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/NSObject+YYAddForARC.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/Foundation/NSObject+YYAddForARC.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/NSObject+YYAddForARC.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/NSObject+YYAddForARC.d"],"deps-style":"makefile","signature":"22f693ede872a379d64dba47eab29bdd"}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/NSObject+YYAddForKVO.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/Foundation/NSObject+YYAddForKVO.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/NSObject+YYAddForKVO.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/Foundation/NSObject+YYAddForKVO.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/Foundation/NSObject+YYAddForKVO.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/module.modulemap","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--generated-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--phase0-copy-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/NSObject+YYAddForKVO.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=YYKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/NSObject+YYAddForKVO.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/NSObject+YYAddForKVO.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/Foundation/NSObject+YYAddForKVO.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/NSObject+YYAddForKVO.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/NSObject+YYAddForKVO.d"],"deps-style":"makefile","signature":"ca4d62c201012d9e362103babfb72873"}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/NSObject+YYModel.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Model/NSObject+YYModel.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/NSObject+YYModel.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Model/NSObject+YYModel.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Model/NSObject+YYModel.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/module.modulemap","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--generated-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--phase0-copy-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/NSObject+YYModel.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=YYKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/NSObject+YYModel.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/NSObject+YYModel.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Model/NSObject+YYModel.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/NSObject+YYModel.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/NSObject+YYModel.d"],"deps-style":"makefile","signature":"ef9da5d06f4c73e8c39076227b5ffb9e"}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/NSParagraphStyle+YYText.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Text/String/NSParagraphStyle+YYText.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/NSParagraphStyle+YYText.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Text/String/NSParagraphStyle+YYText.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Text/String/NSParagraphStyle+YYText.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/module.modulemap","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--generated-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--phase0-copy-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/NSParagraphStyle+YYText.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=YYKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/NSParagraphStyle+YYText.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/NSParagraphStyle+YYText.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Text/String/NSParagraphStyle+YYText.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/NSParagraphStyle+YYText.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/NSParagraphStyle+YYText.d"],"deps-style":"makefile","signature":"599e8c8ba98122cf99d6121ca8882f69"}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/NSString+YYAdd.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/Foundation/NSString+YYAdd.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/NSString+YYAdd.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/Foundation/NSString+YYAdd.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/Foundation/NSString+YYAdd.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/module.modulemap","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--generated-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--phase0-copy-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/NSString+YYAdd.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=YYKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/NSString+YYAdd.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/NSString+YYAdd.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/Foundation/NSString+YYAdd.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/NSString+YYAdd.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/NSString+YYAdd.d"],"deps-style":"makefile","signature":"21c8ce67b8fe2af2cba2ba1ba52e68d5"}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/NSThread+YYAdd.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/Foundation/NSThread+YYAdd.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/NSThread+YYAdd.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/Foundation/NSThread+YYAdd.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/Foundation/NSThread+YYAdd.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/module.modulemap","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--generated-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--phase0-copy-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/NSThread+YYAdd.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=YYKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-fno-objc-arc","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/NSThread+YYAdd.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/NSThread+YYAdd.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/Foundation/NSThread+YYAdd.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/NSThread+YYAdd.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/NSThread+YYAdd.d"],"deps-style":"makefile","signature":"5ef4275b957db278c47e0ac54a2e1fed"}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/NSTimer+YYAdd.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/Foundation/NSTimer+YYAdd.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/NSTimer+YYAdd.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/Foundation/NSTimer+YYAdd.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/Foundation/NSTimer+YYAdd.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/module.modulemap","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--generated-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--phase0-copy-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/NSTimer+YYAdd.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=YYKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/NSTimer+YYAdd.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/NSTimer+YYAdd.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/Foundation/NSTimer+YYAdd.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/NSTimer+YYAdd.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/NSTimer+YYAdd.d"],"deps-style":"makefile","signature":"fcdc765005a85c2a1f7e9935e944f0d5"}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/UIApplication+YYAdd.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/UIKit/UIApplication+YYAdd.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/UIApplication+YYAdd.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/UIKit/UIApplication+YYAdd.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/UIKit/UIApplication+YYAdd.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/module.modulemap","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--generated-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--phase0-copy-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/UIApplication+YYAdd.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=YYKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/UIApplication+YYAdd.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/UIApplication+YYAdd.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/UIKit/UIApplication+YYAdd.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/UIApplication+YYAdd.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/UIApplication+YYAdd.d"],"deps-style":"makefile","signature":"436ddc3786f5f1203ee3ceca32f30b6b"}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/UIBarButtonItem+YYAdd.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/UIKit/UIBarButtonItem+YYAdd.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/UIBarButtonItem+YYAdd.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/UIKit/UIBarButtonItem+YYAdd.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/UIKit/UIBarButtonItem+YYAdd.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/module.modulemap","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--generated-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--phase0-copy-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/UIBarButtonItem+YYAdd.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=YYKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/UIBarButtonItem+YYAdd.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/UIBarButtonItem+YYAdd.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/UIKit/UIBarButtonItem+YYAdd.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/UIBarButtonItem+YYAdd.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/UIBarButtonItem+YYAdd.d"],"deps-style":"makefile","signature":"cdef3d4cf707681824efdb6ad64ec70e"}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/UIBezierPath+YYAdd.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/UIKit/UIBezierPath+YYAdd.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/UIBezierPath+YYAdd.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/UIKit/UIBezierPath+YYAdd.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/UIKit/UIBezierPath+YYAdd.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/module.modulemap","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--generated-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--phase0-copy-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/UIBezierPath+YYAdd.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=YYKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/UIBezierPath+YYAdd.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/UIBezierPath+YYAdd.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/UIKit/UIBezierPath+YYAdd.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/UIBezierPath+YYAdd.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/UIBezierPath+YYAdd.d"],"deps-style":"makefile","signature":"3b0df3705ba46df7822d1e334c04c66f"}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/UIButton+YYWebImage.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Image/Categories/UIButton+YYWebImage.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/UIButton+YYWebImage.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Image/Categories/UIButton+YYWebImage.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Image/Categories/UIButton+YYWebImage.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/module.modulemap","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--generated-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--phase0-copy-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/UIButton+YYWebImage.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=YYKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/UIButton+YYWebImage.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/UIButton+YYWebImage.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Image/Categories/UIButton+YYWebImage.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/UIButton+YYWebImage.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/UIButton+YYWebImage.d"],"deps-style":"makefile","signature":"b8f9ab937b34a4b944dd7d6f63d09be7"}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/UIColor+YYAdd.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/UIKit/UIColor+YYAdd.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/UIColor+YYAdd.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/UIKit/UIColor+YYAdd.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/UIKit/UIColor+YYAdd.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/module.modulemap","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--generated-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--phase0-copy-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/UIColor+YYAdd.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=YYKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/UIColor+YYAdd.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/UIColor+YYAdd.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/UIKit/UIColor+YYAdd.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/UIColor+YYAdd.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/UIColor+YYAdd.d"],"deps-style":"makefile","signature":"993babd8747f6bb38832e28a019c274c"}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/UIControl+YYAdd.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/UIKit/UIControl+YYAdd.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/UIControl+YYAdd.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/UIKit/UIControl+YYAdd.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/UIKit/UIControl+YYAdd.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/module.modulemap","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--generated-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--phase0-copy-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/UIControl+YYAdd.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=YYKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/UIControl+YYAdd.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/UIControl+YYAdd.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/UIKit/UIControl+YYAdd.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/UIControl+YYAdd.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/UIControl+YYAdd.d"],"deps-style":"makefile","signature":"b86bdb4ad1060ee6ce0327f6035a48ba"}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/UIDevice+YYAdd.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/UIKit/UIDevice+YYAdd.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/UIDevice+YYAdd.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/UIKit/UIDevice+YYAdd.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/UIKit/UIDevice+YYAdd.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/module.modulemap","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--generated-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--phase0-copy-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/UIDevice+YYAdd.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=YYKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/UIDevice+YYAdd.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/UIDevice+YYAdd.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/UIKit/UIDevice+YYAdd.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/UIDevice+YYAdd.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/UIDevice+YYAdd.d"],"deps-style":"makefile","signature":"6d2901efa56827379084068117c13553"}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/UIFont+YYAdd.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/UIKit/UIFont+YYAdd.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/UIFont+YYAdd.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/UIKit/UIFont+YYAdd.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/UIKit/UIFont+YYAdd.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/module.modulemap","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--generated-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--phase0-copy-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/UIFont+YYAdd.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=YYKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/UIFont+YYAdd.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/UIFont+YYAdd.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/UIKit/UIFont+YYAdd.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/UIFont+YYAdd.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/UIFont+YYAdd.d"],"deps-style":"makefile","signature":"85c5ec4a5342ef422f0fa21025d5cbe4"}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/UIGestureRecognizer+YYAdd.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/UIKit/UIGestureRecognizer+YYAdd.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/UIGestureRecognizer+YYAdd.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/UIKit/UIGestureRecognizer+YYAdd.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/UIKit/UIGestureRecognizer+YYAdd.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/module.modulemap","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--generated-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--phase0-copy-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/UIGestureRecognizer+YYAdd.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=YYKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/UIGestureRecognizer+YYAdd.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/UIGestureRecognizer+YYAdd.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/UIKit/UIGestureRecognizer+YYAdd.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/UIGestureRecognizer+YYAdd.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/UIGestureRecognizer+YYAdd.d"],"deps-style":"makefile","signature":"714358f8b962bf4c0c4598f8093d4ab4"}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/UIImage+YYAdd.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/UIKit/UIImage+YYAdd.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/UIImage+YYAdd.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/UIKit/UIImage+YYAdd.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/UIKit/UIImage+YYAdd.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/module.modulemap","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--generated-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--phase0-copy-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/UIImage+YYAdd.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=YYKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/UIImage+YYAdd.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/UIImage+YYAdd.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/UIKit/UIImage+YYAdd.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/UIImage+YYAdd.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/UIImage+YYAdd.d"],"deps-style":"makefile","signature":"b33fd544ad4aa8e39278bd9fd59a535c"}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/UIImageView+YYWebImage.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Image/Categories/UIImageView+YYWebImage.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/UIImageView+YYWebImage.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Image/Categories/UIImageView+YYWebImage.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Image/Categories/UIImageView+YYWebImage.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/module.modulemap","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--generated-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--phase0-copy-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/UIImageView+YYWebImage.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=YYKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/UIImageView+YYWebImage.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/UIImageView+YYWebImage.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Image/Categories/UIImageView+YYWebImage.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/UIImageView+YYWebImage.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/UIImageView+YYWebImage.d"],"deps-style":"makefile","signature":"cfbf06fd0de0c21c9b41eb12009e67c8"}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/UIPasteboard+YYText.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Text/String/UIPasteboard+YYText.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/UIPasteboard+YYText.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Text/String/UIPasteboard+YYText.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Text/String/UIPasteboard+YYText.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/module.modulemap","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--generated-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--phase0-copy-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/UIPasteboard+YYText.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=YYKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/UIPasteboard+YYText.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/UIPasteboard+YYText.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Text/String/UIPasteboard+YYText.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/UIPasteboard+YYText.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/UIPasteboard+YYText.d"],"deps-style":"makefile","signature":"74a564672d60d276700eee3853a305be"}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/UIScreen+YYAdd.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/UIKit/UIScreen+YYAdd.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/UIScreen+YYAdd.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/UIKit/UIScreen+YYAdd.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/UIKit/UIScreen+YYAdd.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/module.modulemap","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--generated-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--phase0-copy-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/UIScreen+YYAdd.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=YYKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/UIScreen+YYAdd.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/UIScreen+YYAdd.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/UIKit/UIScreen+YYAdd.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/UIScreen+YYAdd.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/UIScreen+YYAdd.d"],"deps-style":"makefile","signature":"d2f944f576985f4541fff3bec0aa786d"}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/UIScrollView+YYAdd.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/UIKit/UIScrollView+YYAdd.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/UIScrollView+YYAdd.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/UIKit/UIScrollView+YYAdd.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/UIKit/UIScrollView+YYAdd.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/module.modulemap","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--generated-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--phase0-copy-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/UIScrollView+YYAdd.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=YYKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/UIScrollView+YYAdd.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/UIScrollView+YYAdd.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/UIKit/UIScrollView+YYAdd.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/UIScrollView+YYAdd.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/UIScrollView+YYAdd.d"],"deps-style":"makefile","signature":"92fd14f4c5383c1a27ea78c90b3f4121"}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/UITableView+YYAdd.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/UIKit/UITableView+YYAdd.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/UITableView+YYAdd.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/UIKit/UITableView+YYAdd.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/UIKit/UITableView+YYAdd.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/module.modulemap","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--generated-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--phase0-copy-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/UITableView+YYAdd.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=YYKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/UITableView+YYAdd.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/UITableView+YYAdd.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/UIKit/UITableView+YYAdd.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/UITableView+YYAdd.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/UITableView+YYAdd.d"],"deps-style":"makefile","signature":"fa87b8940ed588b8cce99eb02ccaa721"}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/UITextField+YYAdd.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/UIKit/UITextField+YYAdd.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/UITextField+YYAdd.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/UIKit/UITextField+YYAdd.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/UIKit/UITextField+YYAdd.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/module.modulemap","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--generated-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--phase0-copy-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/UITextField+YYAdd.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=YYKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/UITextField+YYAdd.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/UITextField+YYAdd.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/UIKit/UITextField+YYAdd.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/UITextField+YYAdd.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/UITextField+YYAdd.d"],"deps-style":"makefile","signature":"27403f687ac51566a9a8588b0a7de4d0"}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/UIView+YYAdd.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/UIKit/UIView+YYAdd.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/UIView+YYAdd.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/UIKit/UIView+YYAdd.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/UIKit/UIView+YYAdd.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/module.modulemap","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--generated-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--phase0-copy-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/UIView+YYAdd.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=YYKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/UIView+YYAdd.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/UIView+YYAdd.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/UIKit/UIView+YYAdd.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/UIView+YYAdd.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/UIView+YYAdd.d"],"deps-style":"makefile","signature":"317ec370b1af682873bb2704fd0dd5c4"}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYAnimatedImageView.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Image/YYAnimatedImageView.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYAnimatedImageView.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Image/YYAnimatedImageView.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Image/YYAnimatedImageView.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/module.modulemap","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--generated-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--phase0-copy-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYAnimatedImageView.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=YYKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYAnimatedImageView.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYAnimatedImageView.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Image/YYAnimatedImageView.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYAnimatedImageView.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYAnimatedImageView.d"],"deps-style":"makefile","signature":"2c32a9858fcd90d65167ad9ddc44d402"}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYAsyncLayer.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Utility/YYAsyncLayer.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYAsyncLayer.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Utility/YYAsyncLayer.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Utility/YYAsyncLayer.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/module.modulemap","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--generated-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--phase0-copy-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYAsyncLayer.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=YYKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYAsyncLayer.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYAsyncLayer.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Utility/YYAsyncLayer.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYAsyncLayer.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYAsyncLayer.d"],"deps-style":"makefile","signature":"9b195848e869b9ed6faa3a292d8401f4"}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYCGUtilities.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/Quartz/YYCGUtilities.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYCGUtilities.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/Quartz/YYCGUtilities.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/Quartz/YYCGUtilities.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/module.modulemap","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--generated-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--phase0-copy-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYCGUtilities.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=YYKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYCGUtilities.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYCGUtilities.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/Quartz/YYCGUtilities.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYCGUtilities.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYCGUtilities.d"],"deps-style":"makefile","signature":"c6f4d665c2db6eb1d31a3b5bdce79788"}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYCache.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Cache/YYCache.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYCache.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Cache/YYCache.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Cache/YYCache.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/module.modulemap","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--generated-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--phase0-copy-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYCache.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=YYKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYCache.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYCache.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Cache/YYCache.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYCache.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYCache.d"],"deps-style":"makefile","signature":"4c245763fe7e7f39f9b11706bf0a4ce5"}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYClassInfo.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Model/YYClassInfo.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYClassInfo.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Model/YYClassInfo.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Model/YYClassInfo.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/module.modulemap","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--generated-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--phase0-copy-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYClassInfo.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=YYKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYClassInfo.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYClassInfo.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Model/YYClassInfo.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYClassInfo.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYClassInfo.d"],"deps-style":"makefile","signature":"bedbb5e2721abe32902950a754f15f95"}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYDiskCache.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Cache/YYDiskCache.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYDiskCache.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Cache/YYDiskCache.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Cache/YYDiskCache.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/module.modulemap","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--generated-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--phase0-copy-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYDiskCache.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=YYKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYDiskCache.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYDiskCache.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Cache/YYDiskCache.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYDiskCache.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYDiskCache.d"],"deps-style":"makefile","signature":"e34f10d843e2b270fceb2505d6da338e"}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYDispatchQueuePool.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Utility/YYDispatchQueuePool.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYDispatchQueuePool.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Utility/YYDispatchQueuePool.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Utility/YYDispatchQueuePool.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/module.modulemap","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--generated-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--phase0-copy-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYDispatchQueuePool.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=YYKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYDispatchQueuePool.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYDispatchQueuePool.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Utility/YYDispatchQueuePool.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYDispatchQueuePool.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYDispatchQueuePool.d"],"deps-style":"makefile","signature":"5adf56531e150af348102354fc16e426"}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYFileHash.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Utility/YYFileHash.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYFileHash.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Utility/YYFileHash.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Utility/YYFileHash.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/module.modulemap","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--generated-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--phase0-copy-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYFileHash.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=YYKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYFileHash.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYFileHash.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Utility/YYFileHash.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYFileHash.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYFileHash.d"],"deps-style":"makefile","signature":"6eb6d23004d65c488b0db4edc77ddc23"}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYFrameImage.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Image/YYFrameImage.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYFrameImage.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Image/YYFrameImage.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Image/YYFrameImage.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/module.modulemap","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--generated-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--phase0-copy-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYFrameImage.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=YYKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYFrameImage.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYFrameImage.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Image/YYFrameImage.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYFrameImage.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYFrameImage.d"],"deps-style":"makefile","signature":"e8528ba9e4179821c09d2f3f45cf0367"}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYGestureRecognizer.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Utility/YYGestureRecognizer.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYGestureRecognizer.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Utility/YYGestureRecognizer.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Utility/YYGestureRecognizer.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/module.modulemap","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--generated-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--phase0-copy-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYGestureRecognizer.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=YYKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYGestureRecognizer.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYGestureRecognizer.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Utility/YYGestureRecognizer.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYGestureRecognizer.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYGestureRecognizer.d"],"deps-style":"makefile","signature":"ef6bded398069c08b05d348ae86bca15"}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYImage.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Image/YYImage.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYImage.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Image/YYImage.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Image/YYImage.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/module.modulemap","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--generated-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--phase0-copy-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYImage.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=YYKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYImage.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYImage.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Image/YYImage.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYImage.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYImage.d"],"deps-style":"makefile","signature":"c9e1e986df5a41e3403c0b3c3cff7ffa"}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYImageCache.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Image/YYImageCache.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYImageCache.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Image/YYImageCache.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Image/YYImageCache.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/module.modulemap","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--generated-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--phase0-copy-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYImageCache.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=YYKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYImageCache.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYImageCache.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Image/YYImageCache.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYImageCache.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYImageCache.d"],"deps-style":"makefile","signature":"0fec741a4024e60019e73f8889857b24"}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYImageCoder.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Image/YYImageCoder.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYImageCoder.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Image/YYImageCoder.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Image/YYImageCoder.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/module.modulemap","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--generated-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--phase0-copy-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYImageCoder.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=YYKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYImageCoder.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYImageCoder.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Image/YYImageCoder.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYImageCoder.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYImageCoder.d"],"deps-style":"makefile","signature":"0342fc82e76eaade4d533e9f3bd3e225"}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYKVStorage.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Cache/YYKVStorage.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYKVStorage.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Cache/YYKVStorage.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Cache/YYKVStorage.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/module.modulemap","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--generated-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--phase0-copy-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYKVStorage.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=YYKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYKVStorage.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYKVStorage.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Cache/YYKVStorage.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYKVStorage.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYKVStorage.d"],"deps-style":"makefile","signature":"718108fa441ecbc708f8147fef395943"}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYKeychain.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Utility/YYKeychain.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYKeychain.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Utility/YYKeychain.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Utility/YYKeychain.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/module.modulemap","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--generated-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--phase0-copy-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYKeychain.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=YYKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYKeychain.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYKeychain.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Utility/YYKeychain.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYKeychain.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYKeychain.d"],"deps-style":"makefile","signature":"6bfc887048b7935255543bc677fff467"}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYKit-dummy.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-dummy.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYKit-dummy.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-dummy.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-dummy.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/module.modulemap","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--generated-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--phase0-copy-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYKit-dummy.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=YYKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYKit-dummy.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYKit-dummy.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-dummy.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYKit-dummy.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYKit-dummy.d"],"deps-style":"makefile","signature":"cd5ecdc997bd851601b8cde26f7947e0"}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYKit_vers.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources/YYKit_vers.c normal armv7 c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYKit_vers.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources/YYKit_vers.c normal armv7 c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources/YYKit_vers.c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/module.modulemap","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--generated-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--phase0-copy-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYKit_vers.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","c","-target","armv7-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=YYKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Werror=deprecated-objc-isa-usage","-Werror=objc-root-class","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYKit_vers.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYKit_vers.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources/YYKit_vers.c","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYKit_vers.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYKit_vers.d"],"deps-style":"makefile","signature":"cf75e657a428d143b755ac99d1b7e7f6"}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYLabel.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Text/YYLabel.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYLabel.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Text/YYLabel.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Text/YYLabel.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/module.modulemap","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--generated-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--phase0-copy-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYLabel.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=YYKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYLabel.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYLabel.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Text/YYLabel.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYLabel.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYLabel.d"],"deps-style":"makefile","signature":"d54f839c72806e2be6547e53638c0522"}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYMemoryCache.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Cache/YYMemoryCache.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYMemoryCache.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Cache/YYMemoryCache.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Cache/YYMemoryCache.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/module.modulemap","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--generated-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--phase0-copy-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYMemoryCache.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=YYKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYMemoryCache.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYMemoryCache.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Cache/YYMemoryCache.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYMemoryCache.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYMemoryCache.d"],"deps-style":"makefile","signature":"4682556975661e1dbbacfd957f5339e0"}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYReachability.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Utility/YYReachability.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYReachability.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Utility/YYReachability.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Utility/YYReachability.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/module.modulemap","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--generated-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--phase0-copy-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYReachability.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=YYKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYReachability.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYReachability.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Utility/YYReachability.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYReachability.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYReachability.d"],"deps-style":"makefile","signature":"03380de9275f8fdd5249abe3e367396a"}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYSentinel.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Utility/YYSentinel.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYSentinel.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Utility/YYSentinel.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Utility/YYSentinel.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/module.modulemap","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--generated-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--phase0-copy-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYSentinel.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=YYKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYSentinel.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYSentinel.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Utility/YYSentinel.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYSentinel.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYSentinel.d"],"deps-style":"makefile","signature":"26c39dc92b518da8d382e3ded5538018"}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYSpriteSheetImage.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Image/YYSpriteSheetImage.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYSpriteSheetImage.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Image/YYSpriteSheetImage.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Image/YYSpriteSheetImage.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/module.modulemap","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--generated-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--phase0-copy-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYSpriteSheetImage.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=YYKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYSpriteSheetImage.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYSpriteSheetImage.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Image/YYSpriteSheetImage.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYSpriteSheetImage.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYSpriteSheetImage.d"],"deps-style":"makefile","signature":"01812a032c7493837519cbe9793f0710"}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYTextArchiver.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Text/String/YYTextArchiver.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYTextArchiver.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Text/String/YYTextArchiver.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Text/String/YYTextArchiver.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/module.modulemap","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--generated-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--phase0-copy-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYTextArchiver.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=YYKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYTextArchiver.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYTextArchiver.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Text/String/YYTextArchiver.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYTextArchiver.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYTextArchiver.d"],"deps-style":"makefile","signature":"bb8625159dc5a6da1e595b4e3ac5f34d"}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYTextAttribute.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Text/String/YYTextAttribute.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYTextAttribute.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Text/String/YYTextAttribute.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Text/String/YYTextAttribute.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/module.modulemap","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--generated-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--phase0-copy-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYTextAttribute.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=YYKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYTextAttribute.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYTextAttribute.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Text/String/YYTextAttribute.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYTextAttribute.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYTextAttribute.d"],"deps-style":"makefile","signature":"623bd6e94e2ddba2a454d01cb4b55ab8"}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYTextContainerView.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Text/Component/YYTextContainerView.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYTextContainerView.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Text/Component/YYTextContainerView.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Text/Component/YYTextContainerView.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/module.modulemap","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--generated-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--phase0-copy-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYTextContainerView.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=YYKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYTextContainerView.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYTextContainerView.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Text/Component/YYTextContainerView.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYTextContainerView.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYTextContainerView.d"],"deps-style":"makefile","signature":"3df2fa334888a02f6316457da85dcf5c"}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYTextDebugOption.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Text/Component/YYTextDebugOption.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYTextDebugOption.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Text/Component/YYTextDebugOption.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Text/Component/YYTextDebugOption.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/module.modulemap","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--generated-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--phase0-copy-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYTextDebugOption.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=YYKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYTextDebugOption.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYTextDebugOption.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Text/Component/YYTextDebugOption.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYTextDebugOption.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYTextDebugOption.d"],"deps-style":"makefile","signature":"8736da847e48e45aadb4d1a372f0266a"}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYTextEffectWindow.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Text/Component/YYTextEffectWindow.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYTextEffectWindow.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Text/Component/YYTextEffectWindow.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Text/Component/YYTextEffectWindow.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/module.modulemap","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--generated-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--phase0-copy-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYTextEffectWindow.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=YYKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYTextEffectWindow.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYTextEffectWindow.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Text/Component/YYTextEffectWindow.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYTextEffectWindow.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYTextEffectWindow.d"],"deps-style":"makefile","signature":"62a31b2823bb3d757bf28c28a4395f84"}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYTextInput.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Text/Component/YYTextInput.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYTextInput.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Text/Component/YYTextInput.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Text/Component/YYTextInput.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/module.modulemap","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--generated-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--phase0-copy-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYTextInput.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=YYKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYTextInput.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYTextInput.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Text/Component/YYTextInput.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYTextInput.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYTextInput.d"],"deps-style":"makefile","signature":"ddaf520ec4cbff946ee2223160c1550d"}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYTextKeyboardManager.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Text/Component/YYTextKeyboardManager.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYTextKeyboardManager.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Text/Component/YYTextKeyboardManager.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Text/Component/YYTextKeyboardManager.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/module.modulemap","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--generated-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--phase0-copy-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYTextKeyboardManager.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=YYKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYTextKeyboardManager.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYTextKeyboardManager.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Text/Component/YYTextKeyboardManager.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYTextKeyboardManager.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYTextKeyboardManager.d"],"deps-style":"makefile","signature":"0c203675b611c9142b6642002d342c65"}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYTextLayout.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Text/Component/YYTextLayout.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYTextLayout.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Text/Component/YYTextLayout.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Text/Component/YYTextLayout.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/module.modulemap","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--generated-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--phase0-copy-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYTextLayout.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=YYKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYTextLayout.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYTextLayout.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Text/Component/YYTextLayout.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYTextLayout.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYTextLayout.d"],"deps-style":"makefile","signature":"d66ac0998277b9626d4f59c2db13302a"}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYTextLine.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Text/Component/YYTextLine.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYTextLine.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Text/Component/YYTextLine.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Text/Component/YYTextLine.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/module.modulemap","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--generated-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--phase0-copy-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYTextLine.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=YYKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYTextLine.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYTextLine.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Text/Component/YYTextLine.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYTextLine.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYTextLine.d"],"deps-style":"makefile","signature":"9124e6d1ac1a18af6d1880915a41c5a3"}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYTextMagnifier.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Text/Component/YYTextMagnifier.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYTextMagnifier.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Text/Component/YYTextMagnifier.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Text/Component/YYTextMagnifier.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/module.modulemap","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--generated-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--phase0-copy-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYTextMagnifier.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=YYKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYTextMagnifier.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYTextMagnifier.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Text/Component/YYTextMagnifier.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYTextMagnifier.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYTextMagnifier.d"],"deps-style":"makefile","signature":"850fccc92d5b67f9f691b9e373e4276b"}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYTextParser.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Text/String/YYTextParser.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYTextParser.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Text/String/YYTextParser.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Text/String/YYTextParser.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/module.modulemap","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--generated-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--phase0-copy-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYTextParser.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=YYKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYTextParser.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYTextParser.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Text/String/YYTextParser.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYTextParser.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYTextParser.d"],"deps-style":"makefile","signature":"8ba39a12088ab1ad9909b4371136aa74"}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYTextRubyAnnotation.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Text/String/YYTextRubyAnnotation.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYTextRubyAnnotation.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Text/String/YYTextRubyAnnotation.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Text/String/YYTextRubyAnnotation.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/module.modulemap","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--generated-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--phase0-copy-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYTextRubyAnnotation.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=YYKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYTextRubyAnnotation.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYTextRubyAnnotation.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Text/String/YYTextRubyAnnotation.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYTextRubyAnnotation.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYTextRubyAnnotation.d"],"deps-style":"makefile","signature":"9a78b146f0f37c42eb871e20efacbc74"}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYTextRunDelegate.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Text/String/YYTextRunDelegate.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYTextRunDelegate.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Text/String/YYTextRunDelegate.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Text/String/YYTextRunDelegate.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/module.modulemap","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--generated-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--phase0-copy-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYTextRunDelegate.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=YYKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYTextRunDelegate.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYTextRunDelegate.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Text/String/YYTextRunDelegate.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYTextRunDelegate.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYTextRunDelegate.d"],"deps-style":"makefile","signature":"96162cb6b6d0ab5ab64959ec95261e90"}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYTextSelectionView.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Text/Component/YYTextSelectionView.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYTextSelectionView.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Text/Component/YYTextSelectionView.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Text/Component/YYTextSelectionView.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/module.modulemap","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--generated-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--phase0-copy-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYTextSelectionView.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=YYKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYTextSelectionView.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYTextSelectionView.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Text/Component/YYTextSelectionView.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYTextSelectionView.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYTextSelectionView.d"],"deps-style":"makefile","signature":"9dc24ee750e459eb970f782ada9ebc59"}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYTextUtilities.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Text/String/YYTextUtilities.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYTextUtilities.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Text/String/YYTextUtilities.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Text/String/YYTextUtilities.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/module.modulemap","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--generated-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--phase0-copy-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYTextUtilities.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=YYKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYTextUtilities.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYTextUtilities.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Text/String/YYTextUtilities.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYTextUtilities.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYTextUtilities.d"],"deps-style":"makefile","signature":"f49ec57cb6f03442f4098f514aedbcbf"}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYTextView.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Text/YYTextView.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYTextView.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Text/YYTextView.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Text/YYTextView.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/module.modulemap","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--generated-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--phase0-copy-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYTextView.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=YYKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYTextView.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYTextView.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Text/YYTextView.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYTextView.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYTextView.d"],"deps-style":"makefile","signature":"619cc062aafd43b4687bcb34f82ea8fc"}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYThreadSafeArray.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Utility/YYThreadSafeArray.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYThreadSafeArray.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Utility/YYThreadSafeArray.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Utility/YYThreadSafeArray.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/module.modulemap","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--generated-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--phase0-copy-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYThreadSafeArray.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=YYKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYThreadSafeArray.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYThreadSafeArray.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Utility/YYThreadSafeArray.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYThreadSafeArray.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYThreadSafeArray.d"],"deps-style":"makefile","signature":"c95918c7cda470100e96a8f25a26a068"}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYThreadSafeDictionary.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Utility/YYThreadSafeDictionary.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYThreadSafeDictionary.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Utility/YYThreadSafeDictionary.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Utility/YYThreadSafeDictionary.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/module.modulemap","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--generated-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--phase0-copy-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYThreadSafeDictionary.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=YYKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYThreadSafeDictionary.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYThreadSafeDictionary.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Utility/YYThreadSafeDictionary.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYThreadSafeDictionary.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYThreadSafeDictionary.d"],"deps-style":"makefile","signature":"0504289a4afbda5ee61942e25dc299b0"}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYTimer.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Utility/YYTimer.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYTimer.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Utility/YYTimer.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Utility/YYTimer.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/module.modulemap","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--generated-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--phase0-copy-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYTimer.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=YYKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYTimer.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYTimer.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Utility/YYTimer.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYTimer.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYTimer.d"],"deps-style":"makefile","signature":"b8fb662689e3f9b368ac144631e28b07"}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYTransaction.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Utility/YYTransaction.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYTransaction.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Utility/YYTransaction.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Utility/YYTransaction.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/module.modulemap","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--generated-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--phase0-copy-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYTransaction.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=YYKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYTransaction.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYTransaction.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Utility/YYTransaction.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYTransaction.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYTransaction.d"],"deps-style":"makefile","signature":"b19651ffd4888b5355fc1acada9063c1"}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYWeakProxy.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Utility/YYWeakProxy.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYWeakProxy.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Utility/YYWeakProxy.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Utility/YYWeakProxy.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/module.modulemap","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--generated-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--phase0-copy-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYWeakProxy.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=YYKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYWeakProxy.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYWeakProxy.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Utility/YYWeakProxy.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYWeakProxy.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYWeakProxy.d"],"deps-style":"makefile","signature":"00f9fd99ffb2a75103ff8da370ad4d4e"}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYWebImageManager.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Image/YYWebImageManager.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYWebImageManager.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Image/YYWebImageManager.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Image/YYWebImageManager.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/module.modulemap","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--generated-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--phase0-copy-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYWebImageManager.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=YYKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYWebImageManager.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYWebImageManager.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Image/YYWebImageManager.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYWebImageManager.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYWebImageManager.d"],"deps-style":"makefile","signature":"eaa99df0fb3f1688b5dbe9b775d7f895"}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYWebImageOperation.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Image/YYWebImageOperation.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYWebImageOperation.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Image/YYWebImageOperation.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Image/YYWebImageOperation.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/module.modulemap","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--generated-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--phase0-copy-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYWebImageOperation.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=YYKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYWebImageOperation.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYWebImageOperation.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Image/YYWebImageOperation.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYWebImageOperation.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYWebImageOperation.d"],"deps-style":"makefile","signature":"e9087ee98662ce719a961409b8af42fc"}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/_YYWebImageSetter.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Image/Categories/_YYWebImageSetter.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler": {"tool":"shell","description":"CompileC /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/_YYWebImageSetter.o /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Image/Categories/_YYWebImageSetter.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Image/Categories/_YYWebImageSetter.m","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/module.modulemap","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--generated-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--phase0-copy-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/_YYWebImageSetter.o"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-x","objective-c","-target","armv7-apple-ios8.0","-fmessage-length=0","-fdiagnostics-show-note-include-stack","-fmacro-backtrace-limit=0","-std=gnu11","-fobjc-arc","-fobjc-weak","-fmodules","-gmodules","-fmodules-cache-path=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex","-fmodules-prune-interval=86400","-fmodules-prune-after=345600","-fbuild-session-file=/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation","-fmodules-validate-once-per-build-session","-Wnon-modular-include-in-framework-module","-Werror=non-modular-include-in-framework-module","-fmodule-name=YYKit","-Wno-trigraphs","-fpascal-strings","-O0","-fno-common","-Wno-missing-field-initializers","-Wno-missing-prototypes","-Werror=return-type","-Wdocumentation","-Wunreachable-code","-Wno-implicit-atomic-properties","-Werror=deprecated-objc-isa-usage","-Wno-objc-interface-ivars","-Werror=objc-root-class","-Wno-arc-repeated-use-of-weak","-Wimplicit-retain-self","-Wduplicate-method-match","-Wno-missing-braces","-Wparentheses","-Wswitch","-Wunused-function","-Wno-unused-label","-Wno-unused-parameter","-Wunused-variable","-Wunused-value","-Wempty-body","-Wuninitialized","-Wconditional-uninitialized","-Wno-unknown-pragmas","-Wno-shadow","-Wno-four-char-constants","-Wno-conversion","-Wconstant-conversion","-Wint-conversion","-Wbool-conversion","-Wenum-conversion","-Wno-float-conversion","-Wnon-literal-null-conversion","-Wobjc-literal-conversion","-Wshorten-64-to-32","-Wpointer-sign","-Wno-newline-eof","-Wno-selector","-Wno-strict-selector-match","-Wundeclared-selector","-Wdeprecated-implementations","-DPOD_CONFIGURATION_DEBUG=1","-DDEBUG=1","-DCOCOAPODS=1","-DOBJC_OLD_DISPATCH_PROTOTYPES=0","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-fstrict-aliasing","-Wprotocol","-Wdeprecated-declarations","-g","-Wno-sign-conversion","-Winfinite-recursion","-Wcomma","-Wblock-capture-autoreleasing","-Wstrict-prototypes","-Wno-semicolon-before-method-body","-Wunguarded-availability","-fembed-bitcode-marker","-index-store-path","/Users/cnlive-zxw/Library/Developer/Xcode/DerivedData/Pods-bemihqmvsujfobhjvsjctbxujili/Index/DataStore","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-generated-files.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-own-target-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-all-non-framework-target-headers.hmap","-ivfsoverlay","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/all-product-headers.yaml","-iquote","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-project-headers.hmap","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/include","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources-normal/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources/armv7","-I/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-include","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-prefix.pch","-MMD","-MT","dependencies","-MF","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/_YYWebImageSetter.d","--serialize-diagnostics","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/_YYWebImageSetter.dia","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Image/Categories/_YYWebImageSetter.m","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/_YYWebImageSetter.o"],"env":{"LANG":"en_US.US-ASCII"},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/_YYWebImageSetter.d"],"deps-style":"makefile","signature":"7896a327b8931cc4620ac990a9583a37"}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-umbrella.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYKit-umbrella.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-umbrella.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYKit-umbrella.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-umbrella.h/","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--HeadermapTaskProducer>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYKit-umbrella.h"]}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/Foundation/NSArray+YYAdd.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/NSArray+YYAdd.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/Foundation/NSArray+YYAdd.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/NSArray+YYAdd.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/Foundation/NSArray+YYAdd.h/","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--HeadermapTaskProducer>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/NSArray+YYAdd.h"]}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/Foundation/NSBundle+YYAdd.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/NSBundle+YYAdd.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/Foundation/NSBundle+YYAdd.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/NSBundle+YYAdd.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/Foundation/NSBundle+YYAdd.h/","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--HeadermapTaskProducer>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/NSBundle+YYAdd.h"]}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/Foundation/NSData+YYAdd.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/NSData+YYAdd.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/Foundation/NSData+YYAdd.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/NSData+YYAdd.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/Foundation/NSData+YYAdd.h/","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--HeadermapTaskProducer>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/NSData+YYAdd.h"]}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/Foundation/NSDate+YYAdd.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/NSDate+YYAdd.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/Foundation/NSDate+YYAdd.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/NSDate+YYAdd.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/Foundation/NSDate+YYAdd.h/","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--HeadermapTaskProducer>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/NSDate+YYAdd.h"]}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/Foundation/NSDictionary+YYAdd.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/NSDictionary+YYAdd.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/Foundation/NSDictionary+YYAdd.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/NSDictionary+YYAdd.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/Foundation/NSDictionary+YYAdd.h/","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--HeadermapTaskProducer>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/NSDictionary+YYAdd.h"]}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/Foundation/NSKeyedUnarchiver+YYAdd.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/NSKeyedUnarchiver+YYAdd.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/Foundation/NSKeyedUnarchiver+YYAdd.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/NSKeyedUnarchiver+YYAdd.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/Foundation/NSKeyedUnarchiver+YYAdd.h/","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--HeadermapTaskProducer>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/NSKeyedUnarchiver+YYAdd.h"]}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/Foundation/NSNotificationCenter+YYAdd.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/NSNotificationCenter+YYAdd.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/Foundation/NSNotificationCenter+YYAdd.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/NSNotificationCenter+YYAdd.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/Foundation/NSNotificationCenter+YYAdd.h/","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--HeadermapTaskProducer>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/NSNotificationCenter+YYAdd.h"]}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/Foundation/NSNumber+YYAdd.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/NSNumber+YYAdd.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/Foundation/NSNumber+YYAdd.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/NSNumber+YYAdd.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/Foundation/NSNumber+YYAdd.h/","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--HeadermapTaskProducer>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/NSNumber+YYAdd.h"]}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/Foundation/NSObject+YYAdd.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/NSObject+YYAdd.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/Foundation/NSObject+YYAdd.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/NSObject+YYAdd.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/Foundation/NSObject+YYAdd.h/","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--HeadermapTaskProducer>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/NSObject+YYAdd.h"]}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/Foundation/NSObject+YYAddForARC.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/NSObject+YYAddForARC.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/Foundation/NSObject+YYAddForARC.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/NSObject+YYAddForARC.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/Foundation/NSObject+YYAddForARC.h/","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--HeadermapTaskProducer>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/NSObject+YYAddForARC.h"]}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/Foundation/NSObject+YYAddForKVO.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/NSObject+YYAddForKVO.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/Foundation/NSObject+YYAddForKVO.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/NSObject+YYAddForKVO.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/Foundation/NSObject+YYAddForKVO.h/","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--HeadermapTaskProducer>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/NSObject+YYAddForKVO.h"]}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/Foundation/NSString+YYAdd.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/NSString+YYAdd.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/Foundation/NSString+YYAdd.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/NSString+YYAdd.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/Foundation/NSString+YYAdd.h/","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--HeadermapTaskProducer>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/NSString+YYAdd.h"]}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/Foundation/NSThread+YYAdd.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/NSThread+YYAdd.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/Foundation/NSThread+YYAdd.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/NSThread+YYAdd.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/Foundation/NSThread+YYAdd.h/","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--HeadermapTaskProducer>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/NSThread+YYAdd.h"]}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/Foundation/NSTimer+YYAdd.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/NSTimer+YYAdd.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/Foundation/NSTimer+YYAdd.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/NSTimer+YYAdd.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/Foundation/NSTimer+YYAdd.h/","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--HeadermapTaskProducer>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/NSTimer+YYAdd.h"]}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/Quartz/CALayer+YYAdd.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/CALayer+YYAdd.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/Quartz/CALayer+YYAdd.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/CALayer+YYAdd.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/Quartz/CALayer+YYAdd.h/","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--HeadermapTaskProducer>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/CALayer+YYAdd.h"]}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/Quartz/YYCGUtilities.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYCGUtilities.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/Quartz/YYCGUtilities.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYCGUtilities.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/Quartz/YYCGUtilities.h/","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--HeadermapTaskProducer>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYCGUtilities.h"]}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/UIKit/UIApplication+YYAdd.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/UIApplication+YYAdd.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/UIKit/UIApplication+YYAdd.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/UIApplication+YYAdd.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/UIKit/UIApplication+YYAdd.h/","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--HeadermapTaskProducer>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/UIApplication+YYAdd.h"]}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/UIKit/UIBarButtonItem+YYAdd.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/UIBarButtonItem+YYAdd.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/UIKit/UIBarButtonItem+YYAdd.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/UIBarButtonItem+YYAdd.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/UIKit/UIBarButtonItem+YYAdd.h/","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--HeadermapTaskProducer>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/UIBarButtonItem+YYAdd.h"]}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/UIKit/UIBezierPath+YYAdd.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/UIBezierPath+YYAdd.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/UIKit/UIBezierPath+YYAdd.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/UIBezierPath+YYAdd.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/UIKit/UIBezierPath+YYAdd.h/","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--HeadermapTaskProducer>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/UIBezierPath+YYAdd.h"]}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/UIKit/UIColor+YYAdd.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/UIColor+YYAdd.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/UIKit/UIColor+YYAdd.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/UIColor+YYAdd.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/UIKit/UIColor+YYAdd.h/","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--HeadermapTaskProducer>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/UIColor+YYAdd.h"]}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/UIKit/UIControl+YYAdd.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/UIControl+YYAdd.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/UIKit/UIControl+YYAdd.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/UIControl+YYAdd.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/UIKit/UIControl+YYAdd.h/","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--HeadermapTaskProducer>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/UIControl+YYAdd.h"]}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/UIKit/UIDevice+YYAdd.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/UIDevice+YYAdd.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/UIKit/UIDevice+YYAdd.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/UIDevice+YYAdd.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/UIKit/UIDevice+YYAdd.h/","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--HeadermapTaskProducer>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/UIDevice+YYAdd.h"]}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/UIKit/UIFont+YYAdd.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/UIFont+YYAdd.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/UIKit/UIFont+YYAdd.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/UIFont+YYAdd.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/UIKit/UIFont+YYAdd.h/","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--HeadermapTaskProducer>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/UIFont+YYAdd.h"]}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/UIKit/UIGestureRecognizer+YYAdd.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/UIGestureRecognizer+YYAdd.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/UIKit/UIGestureRecognizer+YYAdd.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/UIGestureRecognizer+YYAdd.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/UIKit/UIGestureRecognizer+YYAdd.h/","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--HeadermapTaskProducer>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/UIGestureRecognizer+YYAdd.h"]}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/UIKit/UIImage+YYAdd.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/UIImage+YYAdd.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/UIKit/UIImage+YYAdd.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/UIImage+YYAdd.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/UIKit/UIImage+YYAdd.h/","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--HeadermapTaskProducer>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/UIImage+YYAdd.h"]}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/UIKit/UIScreen+YYAdd.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/UIScreen+YYAdd.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/UIKit/UIScreen+YYAdd.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/UIScreen+YYAdd.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/UIKit/UIScreen+YYAdd.h/","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--HeadermapTaskProducer>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/UIScreen+YYAdd.h"]}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/UIKit/UIScrollView+YYAdd.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/UIScrollView+YYAdd.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/UIKit/UIScrollView+YYAdd.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/UIScrollView+YYAdd.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/UIKit/UIScrollView+YYAdd.h/","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--HeadermapTaskProducer>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/UIScrollView+YYAdd.h"]}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/UIKit/UITableView+YYAdd.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/UITableView+YYAdd.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/UIKit/UITableView+YYAdd.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/UITableView+YYAdd.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/UIKit/UITableView+YYAdd.h/","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--HeadermapTaskProducer>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/UITableView+YYAdd.h"]}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/UIKit/UITextField+YYAdd.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/UITextField+YYAdd.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/UIKit/UITextField+YYAdd.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/UITextField+YYAdd.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/UIKit/UITextField+YYAdd.h/","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--HeadermapTaskProducer>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/UITextField+YYAdd.h"]}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/UIKit/UIView+YYAdd.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/UIView+YYAdd.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/UIKit/UIView+YYAdd.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/UIView+YYAdd.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/UIKit/UIView+YYAdd.h/","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--HeadermapTaskProducer>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/UIView+YYAdd.h"]}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/YYKitMacro.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYKitMacro.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/YYKitMacro.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYKitMacro.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Base/YYKitMacro.h/","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--HeadermapTaskProducer>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYKitMacro.h"]}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Cache/YYCache.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYCache.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Cache/YYCache.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYCache.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Cache/YYCache.h/","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--HeadermapTaskProducer>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYCache.h"]}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Cache/YYDiskCache.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYDiskCache.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Cache/YYDiskCache.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYDiskCache.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Cache/YYDiskCache.h/","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--HeadermapTaskProducer>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYDiskCache.h"]}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Cache/YYKVStorage.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYKVStorage.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Cache/YYKVStorage.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYKVStorage.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Cache/YYKVStorage.h/","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--HeadermapTaskProducer>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYKVStorage.h"]}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Cache/YYMemoryCache.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYMemoryCache.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Cache/YYMemoryCache.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYMemoryCache.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Cache/YYMemoryCache.h/","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--HeadermapTaskProducer>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYMemoryCache.h"]}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Image/Categories/CALayer+YYWebImage.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/CALayer+YYWebImage.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Image/Categories/CALayer+YYWebImage.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/CALayer+YYWebImage.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Image/Categories/CALayer+YYWebImage.h/","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--HeadermapTaskProducer>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/CALayer+YYWebImage.h"]}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Image/Categories/MKAnnotationView+YYWebImage.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/MKAnnotationView+YYWebImage.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Image/Categories/MKAnnotationView+YYWebImage.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/MKAnnotationView+YYWebImage.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Image/Categories/MKAnnotationView+YYWebImage.h/","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--HeadermapTaskProducer>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/MKAnnotationView+YYWebImage.h"]}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Image/Categories/UIButton+YYWebImage.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/UIButton+YYWebImage.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Image/Categories/UIButton+YYWebImage.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/UIButton+YYWebImage.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Image/Categories/UIButton+YYWebImage.h/","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--HeadermapTaskProducer>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/UIButton+YYWebImage.h"]}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Image/Categories/UIImageView+YYWebImage.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/UIImageView+YYWebImage.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Image/Categories/UIImageView+YYWebImage.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/UIImageView+YYWebImage.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Image/Categories/UIImageView+YYWebImage.h/","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--HeadermapTaskProducer>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/UIImageView+YYWebImage.h"]}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Image/Categories/_YYWebImageSetter.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/_YYWebImageSetter.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Image/Categories/_YYWebImageSetter.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/_YYWebImageSetter.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Image/Categories/_YYWebImageSetter.h/","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--HeadermapTaskProducer>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/_YYWebImageSetter.h"]}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Image/YYAnimatedImageView.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYAnimatedImageView.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Image/YYAnimatedImageView.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYAnimatedImageView.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Image/YYAnimatedImageView.h/","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--HeadermapTaskProducer>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYAnimatedImageView.h"]}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Image/YYFrameImage.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYFrameImage.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Image/YYFrameImage.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYFrameImage.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Image/YYFrameImage.h/","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--HeadermapTaskProducer>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYFrameImage.h"]}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Image/YYImage.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYImage.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Image/YYImage.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYImage.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Image/YYImage.h/","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--HeadermapTaskProducer>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYImage.h"]}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Image/YYImageCache.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYImageCache.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Image/YYImageCache.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYImageCache.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Image/YYImageCache.h/","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--HeadermapTaskProducer>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYImageCache.h"]}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Image/YYImageCoder.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYImageCoder.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Image/YYImageCoder.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYImageCoder.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Image/YYImageCoder.h/","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--HeadermapTaskProducer>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYImageCoder.h"]}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Image/YYSpriteSheetImage.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYSpriteSheetImage.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Image/YYSpriteSheetImage.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYSpriteSheetImage.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Image/YYSpriteSheetImage.h/","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--HeadermapTaskProducer>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYSpriteSheetImage.h"]}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Image/YYWebImageManager.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYWebImageManager.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Image/YYWebImageManager.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYWebImageManager.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Image/YYWebImageManager.h/","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--HeadermapTaskProducer>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYWebImageManager.h"]}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Image/YYWebImageOperation.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYWebImageOperation.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Image/YYWebImageOperation.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYWebImageOperation.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Image/YYWebImageOperation.h/","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--HeadermapTaskProducer>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYWebImageOperation.h"]}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Model/NSObject+YYModel.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/NSObject+YYModel.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Model/NSObject+YYModel.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/NSObject+YYModel.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Model/NSObject+YYModel.h/","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--HeadermapTaskProducer>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/NSObject+YYModel.h"]}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Model/YYClassInfo.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYClassInfo.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Model/YYClassInfo.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYClassInfo.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Model/YYClassInfo.h/","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--HeadermapTaskProducer>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYClassInfo.h"]}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Text/Component/YYTextContainerView.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYTextContainerView.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Text/Component/YYTextContainerView.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYTextContainerView.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Text/Component/YYTextContainerView.h/","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--HeadermapTaskProducer>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYTextContainerView.h"]}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Text/Component/YYTextDebugOption.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYTextDebugOption.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Text/Component/YYTextDebugOption.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYTextDebugOption.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Text/Component/YYTextDebugOption.h/","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--HeadermapTaskProducer>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYTextDebugOption.h"]}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Text/Component/YYTextEffectWindow.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYTextEffectWindow.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Text/Component/YYTextEffectWindow.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYTextEffectWindow.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Text/Component/YYTextEffectWindow.h/","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--HeadermapTaskProducer>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYTextEffectWindow.h"]}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Text/Component/YYTextInput.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYTextInput.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Text/Component/YYTextInput.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYTextInput.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Text/Component/YYTextInput.h/","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--HeadermapTaskProducer>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYTextInput.h"]}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Text/Component/YYTextKeyboardManager.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYTextKeyboardManager.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Text/Component/YYTextKeyboardManager.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYTextKeyboardManager.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Text/Component/YYTextKeyboardManager.h/","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--HeadermapTaskProducer>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYTextKeyboardManager.h"]}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Text/Component/YYTextLayout.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYTextLayout.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Text/Component/YYTextLayout.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYTextLayout.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Text/Component/YYTextLayout.h/","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--HeadermapTaskProducer>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYTextLayout.h"]}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Text/Component/YYTextLine.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYTextLine.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Text/Component/YYTextLine.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYTextLine.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Text/Component/YYTextLine.h/","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--HeadermapTaskProducer>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYTextLine.h"]}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Text/Component/YYTextMagnifier.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYTextMagnifier.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Text/Component/YYTextMagnifier.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYTextMagnifier.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Text/Component/YYTextMagnifier.h/","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--HeadermapTaskProducer>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYTextMagnifier.h"]}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Text/Component/YYTextSelectionView.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYTextSelectionView.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Text/Component/YYTextSelectionView.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYTextSelectionView.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Text/Component/YYTextSelectionView.h/","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--HeadermapTaskProducer>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYTextSelectionView.h"]}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Text/String/NSAttributedString+YYText.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/NSAttributedString+YYText.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Text/String/NSAttributedString+YYText.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/NSAttributedString+YYText.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Text/String/NSAttributedString+YYText.h/","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--HeadermapTaskProducer>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/NSAttributedString+YYText.h"]}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Text/String/NSParagraphStyle+YYText.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/NSParagraphStyle+YYText.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Text/String/NSParagraphStyle+YYText.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/NSParagraphStyle+YYText.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Text/String/NSParagraphStyle+YYText.h/","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--HeadermapTaskProducer>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/NSParagraphStyle+YYText.h"]}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Text/String/UIPasteboard+YYText.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/UIPasteboard+YYText.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Text/String/UIPasteboard+YYText.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/UIPasteboard+YYText.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Text/String/UIPasteboard+YYText.h/","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--HeadermapTaskProducer>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/UIPasteboard+YYText.h"]}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Text/String/YYTextArchiver.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYTextArchiver.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Text/String/YYTextArchiver.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYTextArchiver.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Text/String/YYTextArchiver.h/","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--HeadermapTaskProducer>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYTextArchiver.h"]}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Text/String/YYTextAttribute.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYTextAttribute.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Text/String/YYTextAttribute.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYTextAttribute.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Text/String/YYTextAttribute.h/","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--HeadermapTaskProducer>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYTextAttribute.h"]}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Text/String/YYTextParser.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYTextParser.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Text/String/YYTextParser.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYTextParser.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Text/String/YYTextParser.h/","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--HeadermapTaskProducer>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYTextParser.h"]}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Text/String/YYTextRubyAnnotation.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYTextRubyAnnotation.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Text/String/YYTextRubyAnnotation.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYTextRubyAnnotation.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Text/String/YYTextRubyAnnotation.h/","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--HeadermapTaskProducer>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYTextRubyAnnotation.h"]}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Text/String/YYTextRunDelegate.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYTextRunDelegate.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Text/String/YYTextRunDelegate.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYTextRunDelegate.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Text/String/YYTextRunDelegate.h/","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--HeadermapTaskProducer>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYTextRunDelegate.h"]}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Text/String/YYTextUtilities.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYTextUtilities.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Text/String/YYTextUtilities.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYTextUtilities.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Text/String/YYTextUtilities.h/","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--HeadermapTaskProducer>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYTextUtilities.h"]}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Text/YYLabel.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYLabel.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Text/YYLabel.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYLabel.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Text/YYLabel.h/","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--HeadermapTaskProducer>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYLabel.h"]}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Text/YYTextView.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYTextView.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Text/YYTextView.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYTextView.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Text/YYTextView.h/","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--HeadermapTaskProducer>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYTextView.h"]}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Utility/YYAsyncLayer.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYAsyncLayer.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Utility/YYAsyncLayer.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYAsyncLayer.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Utility/YYAsyncLayer.h/","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--HeadermapTaskProducer>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYAsyncLayer.h"]}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Utility/YYDispatchQueuePool.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYDispatchQueuePool.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Utility/YYDispatchQueuePool.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYDispatchQueuePool.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Utility/YYDispatchQueuePool.h/","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--HeadermapTaskProducer>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYDispatchQueuePool.h"]}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Utility/YYFileHash.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYFileHash.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Utility/YYFileHash.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYFileHash.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Utility/YYFileHash.h/","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--HeadermapTaskProducer>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYFileHash.h"]}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Utility/YYGestureRecognizer.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYGestureRecognizer.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Utility/YYGestureRecognizer.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYGestureRecognizer.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Utility/YYGestureRecognizer.h/","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--HeadermapTaskProducer>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYGestureRecognizer.h"]}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Utility/YYKeychain.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYKeychain.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Utility/YYKeychain.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYKeychain.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Utility/YYKeychain.h/","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--HeadermapTaskProducer>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYKeychain.h"]}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Utility/YYReachability.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYReachability.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Utility/YYReachability.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYReachability.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Utility/YYReachability.h/","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--HeadermapTaskProducer>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYReachability.h"]}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Utility/YYSentinel.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYSentinel.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Utility/YYSentinel.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYSentinel.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Utility/YYSentinel.h/","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--HeadermapTaskProducer>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYSentinel.h"]}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Utility/YYThreadSafeArray.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYThreadSafeArray.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Utility/YYThreadSafeArray.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYThreadSafeArray.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Utility/YYThreadSafeArray.h/","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--HeadermapTaskProducer>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYThreadSafeArray.h"]}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Utility/YYThreadSafeDictionary.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYThreadSafeDictionary.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Utility/YYThreadSafeDictionary.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYThreadSafeDictionary.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Utility/YYThreadSafeDictionary.h/","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--HeadermapTaskProducer>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYThreadSafeDictionary.h"]}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Utility/YYTimer.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYTimer.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Utility/YYTimer.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYTimer.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Utility/YYTimer.h/","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--HeadermapTaskProducer>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYTimer.h"]}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Utility/YYTransaction.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYTransaction.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Utility/YYTransaction.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYTransaction.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Utility/YYTransaction.h/","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--HeadermapTaskProducer>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYTransaction.h"]}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Utility/YYWeakProxy.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYWeakProxy.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Utility/YYWeakProxy.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYWeakProxy.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/Utility/YYWeakProxy.h/","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--HeadermapTaskProducer>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYWeakProxy.h"]}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/YYKit.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYKit.h": {"tool":"file-copy","description":"CpHeader /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/YYKit.h /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYKit.h","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/YYKit/YYKit.h/","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--HeadermapTaskProducer>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers/YYKit.h"]}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:CreateUniversalBinary /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/YYKit normal armv7 arm64": {"tool":"shell","description":"CreateUniversalBinary /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/YYKit normal armv7 arm64","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/Binary/YYKit","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/Binary/YYKit","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--phase0-copy-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/YYKit","<Linked Binary /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/YYKit>"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/lipo","-create","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/Binary/YYKit","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/Binary/YYKit","-output","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/YYKit"],"env":{},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","signature":"90a1c984f79a7e60f44791eb4b5f9781"}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:Ditto /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/module.modulemap /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Modules/module.modulemap": {"tool":"file-copy","description":"Ditto /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/module.modulemap /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Modules/module.modulemap","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/module.modulemap/","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--HeadermapTaskProducer>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Modules/module.modulemap"]}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:Ld /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/Binary/YYKit normal arm64": {"tool":"shell","description":"Ld /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/Binary/YYKit normal arm64","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/_YYWebImageSetter.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/CALayer+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/CALayer+YYWebImage.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/MKAnnotationView+YYWebImage.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/NSArray+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/NSAttributedString+YYText.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/NSBundle+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/NSData+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/NSDate+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/NSDictionary+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/NSKeyedUnarchiver+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/NSNotificationCenter+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/NSNumber+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/NSObject+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/NSObject+YYAddForARC.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/NSObject+YYAddForKVO.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/NSObject+YYModel.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/NSParagraphStyle+YYText.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/NSString+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/NSThread+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/NSTimer+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/UIApplication+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/UIBarButtonItem+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/UIBezierPath+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/UIButton+YYWebImage.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/UIColor+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/UIControl+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/UIDevice+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/UIFont+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/UIGestureRecognizer+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/UIImage+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/UIImageView+YYWebImage.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/UIPasteboard+YYText.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/UIScreen+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/UIScrollView+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/UITableView+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/UITextField+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/UIView+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYAnimatedImageView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYAsyncLayer.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYCache.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYCGUtilities.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYClassInfo.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYDiskCache.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYDispatchQueuePool.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYFileHash.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYFrameImage.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYGestureRecognizer.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYImage.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYImageCache.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYImageCoder.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYKeychain.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYKit-dummy.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYKVStorage.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYLabel.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYMemoryCache.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYReachability.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYSentinel.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYSpriteSheetImage.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYTextArchiver.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYTextAttribute.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYTextContainerView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYTextDebugOption.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYTextEffectWindow.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYTextInput.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYTextKeyboardManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYTextLayout.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYTextLine.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYTextMagnifier.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYTextParser.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYTextRubyAnnotation.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYTextRunDelegate.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYTextSelectionView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYTextUtilities.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYTextView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYThreadSafeArray.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYThreadSafeDictionary.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYTimer.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYTransaction.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYWeakProxy.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYWebImageManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYWebImageOperation.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYKit_vers.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYKit.LinkFileList","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--phase0-copy-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/Binary/YYKit"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-target","arm64-apple-ios8.0","-dynamiclib","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-L/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-filelist","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYKit.LinkFileList","-install_name","@rpath/YYKit.framework/YYKit","-Xlinker","-rpath","-Xlinker","@executable_path/Frameworks","-Xlinker","-rpath","-Xlinker","@loader_path/Frameworks","-dead_strip","-Xlinker","-object_path_lto","-Xlinker","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYKit_lto.o","-Xlinker","-export_dynamic","-Xlinker","-no_deduplicate","-fembed-bitcode-marker","-fobjc-arc","-fobjc-link-runtime","-lsqlite3","-lz","-framework","Accelerate","-framework","AssetsLibrary","-framework","CoreFoundation","-framework","CoreGraphics","-framework","CoreImage","-framework","CoreText","-framework","ImageIO","-framework","MobileCoreServices","-framework","QuartzCore","-framework","SystemConfiguration","-framework","UIKit","-framework","WebP","-framework","Accelerate","-framework","AssetsLibrary","-framework","CoreFoundation","-framework","CoreGraphics","-framework","CoreImage","-framework","CoreText","-framework","Foundation","-framework","ImageIO","-framework","MobileCoreServices","-framework","QuartzCore","-framework","SystemConfiguration","-framework","UIKit","-compatibility_version","1","-current_version","1","-Xlinker","-dependency_info","-Xlinker","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYKit_dependency_info.dat","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/Binary/YYKit"],"env":{},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYKit_dependency_info.dat"],"deps-style":"dependency-info","signature":"d95dd80622a0c1904fe8612db94f88e2"}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:Ld /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/Binary/YYKit normal armv7": {"tool":"shell","description":"Ld /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/Binary/YYKit normal armv7","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/_YYWebImageSetter.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/CALayer+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/CALayer+YYWebImage.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/MKAnnotationView+YYWebImage.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/NSArray+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/NSAttributedString+YYText.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/NSBundle+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/NSData+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/NSDate+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/NSDictionary+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/NSKeyedUnarchiver+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/NSNotificationCenter+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/NSNumber+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/NSObject+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/NSObject+YYAddForARC.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/NSObject+YYAddForKVO.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/NSObject+YYModel.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/NSParagraphStyle+YYText.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/NSString+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/NSThread+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/NSTimer+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/UIApplication+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/UIBarButtonItem+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/UIBezierPath+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/UIButton+YYWebImage.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/UIColor+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/UIControl+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/UIDevice+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/UIFont+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/UIGestureRecognizer+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/UIImage+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/UIImageView+YYWebImage.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/UIPasteboard+YYText.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/UIScreen+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/UIScrollView+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/UITableView+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/UITextField+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/UIView+YYAdd.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYAnimatedImageView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYAsyncLayer.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYCache.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYCGUtilities.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYClassInfo.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYDiskCache.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYDispatchQueuePool.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYFileHash.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYFrameImage.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYGestureRecognizer.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYImage.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYImageCache.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYImageCoder.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYKeychain.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYKit-dummy.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYKVStorage.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYLabel.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYMemoryCache.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYReachability.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYSentinel.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYSpriteSheetImage.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYTextArchiver.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYTextAttribute.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYTextContainerView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYTextDebugOption.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYTextEffectWindow.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYTextInput.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYTextKeyboardManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYTextLayout.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYTextLine.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYTextMagnifier.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYTextParser.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYTextRubyAnnotation.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYTextRunDelegate.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYTextSelectionView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYTextUtilities.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYTextView.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYThreadSafeArray.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYThreadSafeDictionary.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYTimer.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYTransaction.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYWeakProxy.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYWebImageManager.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYWebImageOperation.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYKit_vers.o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYKit.LinkFileList","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--phase0-copy-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/Binary/YYKit"],"args":["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang","-target","armv7-apple-ios8.0","-dynamiclib","-isysroot","/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.1.sdk","-L/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit","-F/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/YYKit/Vendor","-filelist","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYKit.LinkFileList","-install_name","@rpath/YYKit.framework/YYKit","-Xlinker","-rpath","-Xlinker","@executable_path/Frameworks","-Xlinker","-rpath","-Xlinker","@loader_path/Frameworks","-dead_strip","-Xlinker","-object_path_lto","-Xlinker","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYKit_lto.o","-Xlinker","-export_dynamic","-Xlinker","-no_deduplicate","-fembed-bitcode-marker","-fobjc-arc","-fobjc-link-runtime","-lsqlite3","-lz","-framework","Accelerate","-framework","AssetsLibrary","-framework","CoreFoundation","-framework","CoreGraphics","-framework","CoreImage","-framework","CoreText","-framework","ImageIO","-framework","MobileCoreServices","-framework","QuartzCore","-framework","SystemConfiguration","-framework","UIKit","-framework","WebP","-framework","Accelerate","-framework","AssetsLibrary","-framework","CoreFoundation","-framework","CoreGraphics","-framework","CoreImage","-framework","CoreText","-framework","Foundation","-framework","ImageIO","-framework","MobileCoreServices","-framework","QuartzCore","-framework","SystemConfiguration","-framework","UIKit","-compatibility_version","1","-current_version","1","-Xlinker","-dependency_info","-Xlinker","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYKit_dependency_info.dat","-o","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/Binary/YYKit"],"env":{},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","deps":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYKit_dependency_info.dat"],"deps-style":"dependency-info","signature":"e29208d054b9f50248384210d331e16f"}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:MkDir /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework": {"tool":"mkdir","description":"MkDir /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework","inputs":["<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--start>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework","<MkDir /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework>"]}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:MkDir /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers": {"tool":"mkdir","description":"MkDir /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers","inputs":["<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--start>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers","<MkDir /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Headers>"]}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:ProcessInfoPlistFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Info.plist /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-Info.plist": {"tool":"info-plist-processor","description":"ProcessInfoPlistFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Info.plist /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-Info.plist","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods/Target Support Files/YYKit/YYKit-Info.plist","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--HeadermapTaskProducer>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework/Info.plist"]}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:Touch /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework": {"tool":"shell","description":"Touch /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework","inputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--Barrier-RegisterExecutionPolicyException>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--entry>"],"outputs":["<Touch /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework>"],"args":["/usr/bin/touch","-c","/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Debug-iphoneos/YYKit/YYKit.framework"],"env":{},"working-directory":"/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/Pods","signature":"23652b19c6b64ad770c238f580eca582"}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources/YYKit_vers.c": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources/YYKit_vers.c","inputs":["<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--phase0-copy-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--begin-compiling>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/DerivedSources/YYKit_vers.c"]}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYKit.LinkFileList": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYKit.LinkFileList","inputs":["<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--phase0-copy-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/arm64/YYKit.LinkFileList"]}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYKit.LinkFileList": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYKit.LinkFileList","inputs":["<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--phase0-copy-headers>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--entry>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/Objects-normal/armv7/YYKit.LinkFileList"]}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-all-non-framework-target-headers.hmap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-all-non-framework-target-headers.hmap","inputs":["<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--GeneratedFilesTaskProducer>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-all-non-framework-target-headers.hmap"]}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-all-target-headers.hmap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-all-target-headers.hmap","inputs":["<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--GeneratedFilesTaskProducer>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-all-target-headers.hmap"]}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-generated-files.hmap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-generated-files.hmap","inputs":["<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--GeneratedFilesTaskProducer>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-generated-files.hmap"]}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-own-target-headers.hmap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-own-target-headers.hmap","inputs":["<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--GeneratedFilesTaskProducer>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-own-target-headers.hmap"]}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-project-headers.hmap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-project-headers.hmap","inputs":["<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--GeneratedFilesTaskProducer>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit-project-headers.hmap"]}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit.hmap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit.hmap","inputs":["<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--GeneratedFilesTaskProducer>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/YYKit.hmap"]}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/all-product-headers.yaml": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/all-product-headers.yaml","inputs":["<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--GeneratedFilesTaskProducer>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/all-product-headers.yaml"]}
"target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab-:Debug:WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/module.modulemap": {"tool":"auxiliary-file","description":"WriteAuxiliaryFile /Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/module.modulemap","inputs":["<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--HeadermapTaskProducer>","<target-YYKit-285b96a559574e49fe0e1a40c03a5a8e27daaa4b3dcb31975b6acd421becbdab--immediate>"],"outputs":["/Users/cnlive-zxw/Desktop/网家家模块/CNLiveIntegralModule/Example/build/Pods.build/Debug-iphoneos/YYKit.build/module.modulemap"]}